// Gdk.Point.custom - Gdk Point class customizations // // Author: Jasper van Putten // Author: Martin Willemoes Hansen // // (c) 2002 Jasper van Putten // (c) 2003 Martin Willemoes Hansen // // This code is inserted after the automatically generated code. /// /// ToString method /// /// /// /// returns a string representation of this point /// public override string ToString () { return String.Format ("({0},{1})", X, Y); } /// /// Point Constructor /// /// /// /// Constructs a new Point with the specified /// coordinates. /// public Point (int x, int y) { this.X = x; this.Y = y; }