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

◆ ToDouble() [14/18]

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

Definition at line 2073 of file Convert.cs.

2074 {
2075 if (value == null)
2076 {
2077 return 0.0;
2078 }
2079 return double.Parse(value);
2080 }

References System.value.