System.Xml.Schema.XdrBuilder.ParseInteger C# (CSharp) 메소드

ParseInteger() 개인적인 정적인 메소드

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