OpenTK.Graphics.Rectangle.ToString C# (CSharp) Méthode

ToString() public méthode

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