Arithmetic Operations
We learned in Chapter 7 that variables can be “converted” from one numeric data type to another, which is referred to as casting, or from a string value to a numeric value, which is called parsing. Parsing uses methods from a wrapper class to convert the string data to a numeric data type value. These are important concepts and widely used in all programming languages by professional developers. As we develop our C# skills throughout the chapters, we will use these concepts, so it is worthwhile constantly reminding ourselves ...