ConvertToSingle Method (String) |
Converts the specified string representation of a number to an equivalent single-precision floating-point number.
Namespace: SystemAssembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax public static float ToSingle(
string value
)
Parameters
- value
- Type: SystemString
A string that contains the number to convert.
Return Value
Type:
SingleA single-precision floating-point number that is equivalent to the number in
value, or 0 (zero) if
value is null.
Exceptions Exception | Condition |
---|
FormatException | value is not a number in a valid format. |
OverflowException | value represents a number that is less than MinValue or greater than MaxValue. |
See Also