-
Book Overview & Buying
-
Table Of Contents
Enterprise Application Development with C# 10 and .NET 6 - Second Edition
By :
There are a number of text conventions used throughout this book.
Code in text: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "WriteMinimalPlainText will just emit the overall status of the health check services."
A block of code is set as follows:
app.UseEndpoints(endpoints =>
{
endpoints.MapControllerRoute(
name: "default",
pattern: "{controller=Products}/{action=Index}/{id?}");
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
app.UseEndpoints(endpoints =>
{
"{controller=Products}/{action=Index}/{id?}");
endpoints.MapHealthChecks("/health");
});
Any command-line input or output is written as follows:
dotnet new classlib -o MyLibrary
Bold: Indicates a new term, an important word, or words that you see onscreen. For instance, words in menus or dialog boxes appear in bold. Here is an example: "Let's add a custom event tracking when the user clicks on the Add to Cart button on the Product Details page."
Tips or Important Notes
Appear like this.