static void Main(string[] args) { Point MyPoint; MyPoint.X = 125; MyPoint.Y = 123; MyPoint.Display(); MyPoint.Increment(); MyPoint.Display(); }