Skip to content

Instantly share code, notes, and snippets.

@dsibinski
Created August 4, 2018 20:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dsibinski/7ec30a97fb93a7cffbb6e911979f8cbe to your computer and use it in GitHub Desktop.
Save dsibinski/7ec30a97fb93a7cffbb6e911979f8cbe to your computer and use it in GitHub Desktop.
int i = 123; // "i" is a value type
object o = i; // boxing "i" into "o"
int j = (int)o; // unboxing "o" into "j"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment