OpenTK.Graphics.Rectangle.ToString C# (CSharp) 메소드

ToString() 공개 메소드

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