Skip to content

Instantly share code, notes, and snippets.

@gdyrrahitis
Created June 21, 2019 19:06
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 gdyrrahitis/7bea82fca0fe1dbc06b7d57af27580e6 to your computer and use it in GitHub Desktop.
Save gdyrrahitis/7bea82fca0fe1dbc06b7d57af27580e6 to your computer and use it in GitHub Desktop.
public void BoxingUnboxing()
{
int x = 10;
double y = x; // This is fine
object o = x;
double z = (double)o; // Unhandled Exception: System.InvalidCastException:
// Unable to cast object of type 'System.Int32' to type 'System.Double'.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment