Variables and Types
From SDU
To make corrections or additions to this article, select the edit tab above.
To discuss or ask questions about this article, select the discussion tab above.
To discuss or ask questions about this article, select the discussion tab above.
Declaring variables
int theInt; long theLong; string theString; object theObject;
Assignment of variables
int theInt, anotherInt; theInt = 0; anotherInt = 10;
Casting
string theString; theString = "5"; int theInt; theInt = (int)theString;
NULL
object theObject;
theObject = NULL;





