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

◆ ToSingle() [15/18]

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

Definition at line 1972 of file Convert.cs.

1973 {
1974 if (value == null)
1975 {
1976 return 0f;
1977 }
1978 return float.Parse(value, provider);
1979 }

References System.value.