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

◆ Parse() [8/12]

static long System.Int64.Parse ( string s,
IFormatProvider? provider )
inlinestatic

Definition at line 138 of file Int64.cs.

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

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