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

◆ ToSingle() [11/18]

static float System.Convert.ToSingle ( object? value,
IFormatProvider? provider )
inlinestatic

Definition at line 1890 of file Convert.cs.

1891 {
1892 if (value != null)
1893 {
1894 return ((IConvertible)value).ToSingle(provider);
1895 }
1896 return 0f;
1897 }

References System.value.