What you need for this book
You can develop and deploy C# and .NET apps and services using Visual Studio 2022, or Visual Studio Code and the command-line tools on most operating systems, including Windows, macOS, and many varieties of Linux. An operating system that supports Visual Studio Code and an internet connection is all you need to complete this book. If you prefer to use a third-party tool like JetBrains Rider, then you can.
Downloading the color images of this book
We also provide you with a PDF file that has color images of the screenshots and diagrams used in this book. The color images will help you better understand the changes in the output.
You can download this file from https://packt.link/gbp/9781837637133.
Conventions
In this book, you will find several text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.
CodeInText
: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. For example: “The Controllers
, Models
, and Views
folders contain ASP.NET Core classes and the .cshtml
files for execution on the server.”
A block of code is set as follows:
// storing items at index positions
names[0] = "Kate";
names[1] = "Jack";
names[2] = "Rebecca";
names[3] = "Tom";
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are highlighted:
// storing items at index positions
names[0] = "Kate";
names[1] = "Jack";
names[2] = "Rebecca";
names[3] = "Tom";
Any command-line input or output is written as follows:
dotnet new console
Bold: Indicates a new term, an important word, or words that you see on the screen, for example, in menus or dialog boxes, also appear in the text like this. For example: “Clicking on the Next button moves you to the next screen.”
Important notes and links to external sources of further reading appear in a box like this.
Good Practice: Recommendations for how to program like an expert appear like this.