Conventions

In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.

Code words in text, folder names, filenames, file extensions, pathnames, URLs, user input, and Twitter handles are shown as follows: "Add a TripLogEntry property to the class and name it Entry."

A block of code is set as follows:

public MainViewModel : BaseViewModel
{
    public MainViewModel ()
    { ... }
}

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

public MainViewModel : BaseViewModel
{
    public MainViewModel ()
    {
       Entry = new TripLogEntry ();
    }
}

New terms and important words are shown in ...

Get Mastering Xamarin.Forms 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.