Last active
August 8, 2018 04:22
-
-
Save dsibinski/105cc15fdf7cebd08bcfc7751793eca6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace BoxingUnboxingTest | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int a = 5; | |
object o = a; | |
int b = (int)o; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment