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: “The first thing we need to create is a BookmarkService
class.”
A block of code is set as follows:
namespace bookmarkr; public class BookmarkService { private readonly List<Bookmark> _bookmarks = new(); }
Any command-line input or output is written as follows:
$ bookmarkr link add --name <name> --url <url>
Tips or important notes
Appear like this.