System.ZXPCPoint.Convert C# (CSharp) Méthode

Convert() public méthode

public Convert ( object value ) : string
value object
Résultat string
        public string Convert(object value)
        {
            if(value == null) return "Null";
            Point v = (Point)value;
            if(v == null) return "Null";
            return string.Format("{0} , {1}", v.X, v.Y);
        }

Same methods

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