«^»
5.3. Using the Point class in C#
using System;
public class PointTest
{
    public static void Main()
    {
        Point tPoint = new Point(100, 200);
        Console.WriteLine(tPoint);
        Point tAnotherPoint = tPoint;
        Console.WriteLine(tAnotherPoint);
    }
}