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

◆ ToDouble() [15/18]

static double System.Convert.ToDouble ( string? value,
IFormatProvider? provider )
inlinestatic

Definition at line 2082 of file Convert.cs.

2083 {
2084 if (value == null)
2085 {
2086 return 0.0;
2087 }
2088 return double.Parse(value, provider);
2089 }

References System.value.