public Point(int x, int y)
public void MoveTo(int a, int b)
public static Color defaultColor;
static readonly int scale;
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()
Rectangle.defaultColor=Color.Red;
Color defaultColor = Rectangle.defaultColor;
Console.WriteLine(defaultColor);