Typecasting
Typecasting
DEFINITION:
Converting an expression of a given type into another type is known as type-casting.
Because C# is statically-typed at compile time, after a variable is declared, it cannot be
declared again or used to store values of another type unless that type is convertible to the
variable's type
return temp;
}