Casting a Variable
float amount = 1.0;
int amountAsInt = int(amount);
// now amountAsInt can be used where an integer is neededint count = 3;
string countAsString = count.ToString();
// now countAsString can be used where a string is neededLast updated