This section will show you how to do basic mathematical operations, and to add pictures toy our projects. We will be making a basic Payroll program that we will frequently update to demonstrate various programming techniques that we will learn.
Additional Info:
(number to format).ToString("C")
ex: (45.666).ToString("C") will show: $45.67
ex: dblTotalPrice.ToString("C")
Math.Round(# to be rounded, # of decimal places) ex: Math.Round(45.666, 1) will show: 45.7