HasK.Controls.Graph.DSize.ToString C# (CSharp) Method

ToString() public method

Convert DSize object to string representation
public ToString ( ) : string
return string
        public override string ToString()
        {
            return String.Format("W: {0}; H: {1}", Width, Height);
        }
    }