Variables and Data Types in C#
Variables
A variable is a named storage location in memory that holds a value. In C#, you must declare a variable before using it.
data_type variable_name;
Data Types
C# has a rich set of data types to represent different kinds of data.
1. Value Type...