Conventions used
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: "This class library project will be called GrpcDependencies
."
A block of code is set as follows:
enum ClientStatus { OFFLINE = 0; ONLINE = 1; BUSY = 2; }
Any command-line input or output is written as follows:
dotnet add GrpcBlazorClient.csproj package Grpc.Net.Client dotnet add GrpcBlazorClient.csproj package Google.Protobuf dotnet add GrpcBlazorClient.csproj package Grpc.Tools dotnet add GrpcBlazorClient.csproj package Grpc.Net.Client.Web
Tips or Important Notes
Appear like this.