VOOZH about

URL: https://www.geeksforgeeks.org/c-sharp/c-sharp-decimal-tostring-method-set-1/

⇱ C# | Decimal.ToString Method | Set -1 - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

C# | Decimal.ToString Method | Set -1

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

ToString() Method

This method is used to convert the numeric value of the current instance to its equivalent string representation.
Syntax: public override string ToString (); Return Value: This method returns a string which represents the value of the current instance.
Below programs illustrate the use of Decimal.ToString() Method: Example 1:
Output:
String value is 7922816251426433759354.3950330
Example 2:
Output:
Equivalent String values are:
String value is 20
String value is 30
String value is 40
String value is 4294967295

ToString(String) Method

This method is used to convert the numeric value of the current instance to its equivalent string representation, using the specified format.
Syntax: public string ToString (string format); Here, it takes a standard or custom numeric format string. Return Value: This method returns the string representation of the value of the current instance as specified by format. Exceptions: This method throws FormatException if format is invalid.
Example 1:
Output:
String value is 1.6326E+004
Example 2: For FormatException
Output:
Format is invalid.
Exception Thrown: System.FormatException
Reference:
Comment
Article Tags:

Explore