Binarysharp.MemoryManagement.Native.Rectangle.ToString C# (CSharp) Method

ToString() public method

Returns a string that represents the current object.
public ToString ( ) : string
return string
        public override string ToString()
        {
            return string.Format("Left = {0} Top = {1} Height = {2} Width = {3}", Left, Top, Height, Width);
        }
Rectangle