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

◆ ParseDouble()

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

Definition at line 5613 of file Number.cs.

5614 {
5615 if (!TryParseDouble(value, styles, info, out var result))
5616 {
5618 }
5619 return result;
5620 }
static void ThrowOverflowOrFormatException(ParsingStatus status, TypeCode type=TypeCode.Empty)
Definition Number.cs:5918
static unsafe bool TryParseDouble(ReadOnlySpan< char > value, NumberStyles styles, NumberFormatInfo info, out double result)
Definition Number.cs:5665

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

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