April 2018
Intermediate to advanced
280 pages
8h 37m
English
There are a number of text conventions used throughout this book.
CodeInText: 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: "Invoke this function by calling it from the main() function."
A block of code is set as follows:
public static void Main(string[] args){ createS3Bucket(); // invoke the method to create an S3 bucket listS3Buckets(); // invoke the method to list all S3 buckets Console.ReadKey();}
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 static void Main(string[] args){ createS3Bucket(); // invoke the method to create ...