Skip to content

Instantly share code, notes, and snippets.

@tnngo2
Created April 6, 2012 09:39
Show Gist options
  • Save tnngo2/2318516 to your computer and use it in GitHub Desktop.
Save tnngo2/2318516 to your computer and use it in GitHub Desktop.
//Boxing
int a = 10;
Object b = a;
Console.WriteLine("Boxed = {0}", b);
//Unboxing
int d = (int)b;
Console.WriteLine("Unboxed = {0}", d);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment