using System; public class PointTest { public static void Main() { Point tPoint = new Point(100, 200); Console.WriteLine(tPoint); Point tAnotherPoint = tPoint; Console.WriteLine(tAnotherPoint); } }