Sharpex2D.Math.Rectangle.ToString C# (CSharp) Method

ToString() public method

Converts the Rectangle to a string.
public ToString ( ) : string
return string
        public override string ToString()
        {
            return X + ";" + Y + ";" + Width + ";" + Height;
        }