public static void Main() {Point pint;pint.x = pint.y = 1;Object o = pint; // Boxes pint; o refers to the boxed instancepint = (Point) o; // Unboxes o AND copies fields from boxed}
Login to post response