OpenTK.Graphics.Rectangle.ToString C# (CSharp) Method

ToString() public method

ToString Method
Formats the Rectangle as a string in (x,y,w,h) notation.
public ToString ( ) : string
return string
        public override string ToString()
        {
            return String.Format("{{X={0},Y={1},Width={2},Height={3}}}",
                         x, y, width, height);
        }
    }