A variable is a storage holder, and is essential for the programmer.
In C#, a variable is declared like this:
Syntax:
An example could look like this:
You can also control the visibility of a variable like this,
<visibility> <data type> <name> = <value>;
public string name; //Visible to all
private string name; //Not visible to all
..