VOOZH about

URL: https://www.geeksforgeeks.org/c-sharp/single-tostring-method-in-c-sharp-set-2/

⇱ Single.ToString() Method in C# | Set - 2 - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Single.ToString() Method in C# | Set - 2

Last Updated : 11 Jul, 2025
Single.ToString() Method is used to convert the numeric value of the current instance to its equivalent string representation. There are 4 methods in the overload list of this method as follows:
  • ToString(String) Method
  • ToString() Method
  • ToString(IFormatProvider) Method
  • ToString(String, IFormatProvider) Method
Here, we will discuss the last two methods.

ToString(IFormatProvider) Method

This method is used to convert the numeric value of the current instance to its equivalent string representation using the specified culture-specific format information. Syntax:
public string ToString (IFormatProvider provider);
Parameters: This method takes an object of type IFormatProvider which supplies culture-specific formatting information. Return Value: This method returns the string representation of the value of the current instance in the format specified by the provider parameter. Example:
Output:
The Value is 65465.68 and provider is en-US

Single.ToString(String, IFormatProvider) Method

This method is used to convert the numeric value of this instance to its equivalent string representation using the specified format and culture-specific formatting information. Syntax:
public string ToString (string format, IFormatProvider provider);
Parameters:
format: It is a standard or custom numeric format string. provider: It is an object which supplies culture-specific formatting information.
Return Value: This method returns the string representation of the current instance specified by the format and provider parameter. Example:
Output:
The value is 340.282.300.000.000.000.000.000.000.000.000.000.000,00
The Format is N
The Provider is es-ES
Reference:
Comment
Article Tags:

Explore