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

◆ ParseUInt64()

static ulong System.Number.ParseUInt64 ( ReadOnlySpan< char > value,
NumberStyles styles,
NumberFormatInfo info )
inlinestaticpackage

Definition at line 4030 of file Number.cs.

4031 {
4032 ulong result;
4033 ParsingStatus parsingStatus = TryParseUInt64(value, styles, info, out result);
4034 if (parsingStatus != 0)
4035 {
4036 ThrowOverflowOrFormatException(parsingStatus, TypeCode.UInt64);
4037 }
4038 return result;
4039 }
static void ThrowOverflowOrFormatException(ParsingStatus status, TypeCode type=TypeCode.Empty)
Definition Number.cs:5918
static ParsingStatus TryParseUInt64(ReadOnlySpan< char > value, NumberStyles styles, NumberFormatInfo info, out ulong result)
Definition Number.cs:5119

References System.info, System.Number.ThrowOverflowOrFormatException(), System.Number.TryParseUInt64(), and System.value.

Referenced by System.UInt64.Parse(), System.UInt64.Parse(), System.UInt64.Parse(), System.UInt64.Parse(), and System.UInt64.Parse().