- Visual Studio 2013 and .NET 4.5 Expert Cookbook
- Abhishek Sur
- 227字
- 2021-08-05 17:55:36
Conventions
In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "The program will pause during the first Run
method."
A block of code is set as follows:
static void Main() { Thread.CurrentThread.Name = "Main Thread"; Thread t1 = new Thread(new ThreadStart(Run)); t1.Name = "Thread 1"; Thread t2 = new Thread(new ThreadStart(Run)); t2.Name = "Thread 2"; t1.Start(); t2.Start(); Run(); } static void Run() { Console.WriteLine("hello {0}!", Thread.CurrentThread.Name); Thread.Sleep(1000); }
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
// Type 'Abhishek' in 'txtInput' text box
uITxtInputEdit.Text = this.ReverseStringTestParams.UITxtInputEditText;
Any command-line input or output is written as follows:
ALTER DATABASE MyDatabase MODIFY (EDITION='BUSINESS', MAXSIZE=100GB)
New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "You can declare a local variable using the Watch window and use it in the conditions."
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.
- Modern Programming: Object Oriented Programming and Best Practices
- Hadoop大數(shù)據(jù)實(shí)戰(zhàn)權(quán)威指南(第2版)
- 大數(shù)據(jù):從概念到運(yùn)營(yíng)
- 3D計(jì)算機(jī)視覺(jué):原理、算法及應(yīng)用
- gnuplot Cookbook
- INSTANT Apple iBooks How-to
- SAS金融數(shù)據(jù)挖掘與建模:系統(tǒng)方法與案例解析
- Unreal Engine Virtual Reality Quick Start Guide
- 聯(lián)動(dòng)Oracle:設(shè)計(jì)思想、架構(gòu)實(shí)現(xiàn)與AWR報(bào)告
- SIEMENS數(shù)控技術(shù)應(yīng)用工程師:SINUMERIK 840D-810D數(shù)控系統(tǒng)功能應(yīng)用與維修調(diào)整教程
- 機(jī)器學(xué)習(xí):實(shí)用案例解析
- 中國(guó)云存儲(chǔ)發(fā)展報(bào)告
- MySQL數(shù)據(jù)庫(kù)應(yīng)用與管理
- 大數(shù)據(jù)隱私保護(hù)技術(shù)與治理機(jī)制研究
- Oracle 內(nèi)核技術(shù)揭密