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

◆ TryParse() [6/12]

static bool System.UInt64.TryParse ( [NotNullWhen(true)] string? s,
out ulong result )
inlinestatic

Definition at line 161 of file UInt64.cs.

162 {
163 if (s == null)
164 {
165 result = 0uL;
166 return false;
167 }
168 return Number.TryParseUInt64IntegerStyle(s, NumberStyles.Integer, NumberFormatInfo.CurrentInfo, out result) == Number.ParsingStatus.OK;
169 }

References System.Globalization.NumberFormatInfo.CurrentInfo, System.s, and System.Number.TryParseUInt64IntegerStyle().

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