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

◆ ToDouble() [11/18]

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

Definition at line 2000 of file Convert.cs.

2001 {
2002 if (value != null)
2003 {
2004 return ((IConvertible)value).ToDouble(provider);
2005 }
2006 return 0.0;
2007 }

References System.value.