System.ZXPCRectangle.Convert C# (CSharp) Метод

Convert() публичный Метод

public Convert ( object value ) : string
value object
Результат string
        public string Convert(object value)
        {
            if(value == null) return "Null";
            Rectangle v = (Rectangle)value;
            if(v == null) return "Null";
            return string.Format("{0} , {1} , {2}, {3}", v.X, v.Y, v.Width, v.Height);
        }

Same methods

ZXPCRectangle::Convert ( string s, object &value ) : bool
ZXPCRectangle