public Point(int x, int y)
public void MoveTo(int a, int b)
public int width, height;
public Rectangle() { origin = new Point(0,0); width = height = 0; }
public Rectangle (Point p, int w, int h) { origin = p; width = w; height = h; }
public void MoveTo (Point p) { origin = p; }
public static void Main()
Point p = new Point(3, 4);
Console.WriteLine("p.x: " + p.x + " & p.y: " + p.y);
Console.WriteLine("After calling move to function. ");
Console.WriteLine("p.x: " + p.x + " & p.y: " + p.y);