-
Book Overview & Buying
-
Table Of Contents
Applied Architecture Patterns on the Microsoft Platform (Second Edition) - Second Edition
By :
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 System namespace is both the root namespace for the .NET Framework and contains the basic building blocks of the .NET Framework."
A block of code is set as follows:
private static int CreateAndEnumerateList(int maxValue)
{
var list = new System.Collections.ArrayList(maxValue);
foreach (var val in Enumerable.Range(0, maxValue))
{
list.Add(val);
}
var total = 0;
foreach (int val in list) //implicit type conversion
{
total += val;
}
return total;
}Any command-line input or output is written as follows:
EsbImportUtil.exe /f:"<Path to folder with Itinerary>\ SmcOneWaySimple.xml" /c:deployed
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: "In order to complete the package to process all input files, we need to go back to the Control Flow tab."
Warnings or important notes appear in a box like this.
Tips and tricks appear like this.
Change the font size
Change margin width
Change background colour