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 are shown as follows: "Add a new XML file to the project, Projects.xml."

A block of code is set as follows:

public class Project
{
public int ProjectId { get; set; }
public string Title { get; set; }
public int EstimatedDaysLeft { get; set; }
public string Status { get; set; }
public string AssignedTo { get; set; }
public int NumberOfTasks { get; set; }
}

When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:

lblStatus.Content = "Started"; // Replace "http://gaston-pc" ...

Get Microsoft Silverlight 4 and SharePoint 2010 Integration now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.