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

Convert() public méthode

public Convert ( string s, object &value ) : bool
s string
value object
Résultat bool
        public bool Convert(string s, out object value)
        {
            uint v;
            if(uint.TryParse(s, out v)) {
                value = v;
                return true;
            }
            value = null;
            return false;
        }

Same methods

ZXPCUInt::Convert ( object value ) : string
ZXPCUInt