Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Parse() [8/12]

static ulong System.UInt64.Parse ( string s,
IFormatProvider? provider )
inlinestatic

Definition at line 136 of file UInt64.cs.

137 {
138 if (s == null)
139 {
140 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.s);
141 }
142 return Number.ParseUInt64(s, NumberStyles.Integer, NumberFormatInfo.GetInstance(provider));
143 }
static NumberFormatInfo GetInstance(IFormatProvider? formatProvider)

References System.Globalization.NumberFormatInfo.GetInstance(), System.Number.ParseUInt64(), System.s, and System.ThrowHelper.ThrowArgumentNullException().