System.Xml.Schema.XdrBuilder.ParseInteger C# (CSharp) Method

ParseInteger() private static method

private static ParseInteger ( string str, uint &n ) : bool
str string
n uint
return bool
        private static bool ParseInteger(string str, ref uint n)
        {
            return UInt32.TryParse(str, NumberStyles.AllowLeadingWhite | NumberStyles.AllowTrailingWhite, NumberFormatInfo.InvariantInfo, out n);
        }
XdrBuilder