// Gdk.Color.custom - Gdk Color class customizations // // Author: Jasper van Putten // // (c) 2002 Jasper van Putten // // This code is inserted after the automatically generated code. /// /// ToString method /// /// /// /// returns a string representation of this color /// /// public override string ToString () { return String.Format ("rgb:{0:x}/{1:x}/{2:x}", red, green, blue); }