Skip to content

Instantly share code, notes, and snippets.

@tnngo2
Created April 6, 2012 09:21
Show Gist options
  • Save tnngo2/2318445 to your computer and use it in GitHub Desktop.
Save tnngo2/2318445 to your computer and use it in GitHub Desktop.
Implicit Typecasting
//Implicit Conversion
int valueOne = 34;
float valueTwo;
valueTwo = valueOne;
Console.WriteLine("valueTwo => " + valueOne);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment