This method is used to convert the value of the specified Decimal to the equivalent single-precision floating-point number. This method can produce round-off errors as a single-precision floating-point number has few significant digits than a Decimal.
Syntax: public static float ToSingle (decimal d);
Here, d is the decimal number which is to be converted.
Return value: It returns a single-precision floating-point number equivalent to d.
Example:
Output:
The float value is : 1.345635E-11
The float value is : 4.589663E+21
Reference: