VOOZH about

URL: https://www.geeksforgeeks.org/c-sharp/decimal-tosingle-method-in-c-sharp/

⇱ Decimal.ToSingle() Method in C# - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Decimal.ToSingle() Method in C#

Last Updated : 11 Jul, 2025
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:
Comment
Article Tags:

Explore