Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- public class Program
- {
- public static void Main()
- {
- int x = 10;
- object y = x; // Boxing: Value type to reference type
- Console.WriteLine(y);
- int z = (int)y; // Unboxing: Reference type to Value type
- Console.WriteLine(y);
- }
- }
RAW Paste Data