Boxing (computer programming): Difference between revisions

Content deleted Content added
m Typo and General fixing, replaced: the the → the using AWB
No edit summary
Line 53:
object o = i; // box
int j = o; // unbox (ERROR)
Console.WritelineWriteLine(j); // outputs "42"
</source>