Use ToString to format double: C : String Format « String « C# / CSharp Tutorial






using System; 
 
class MainClass { 
  public static void Main() { 
    string str = 189.99.ToString("C"); 
    Console.WriteLine(str); 
  }

}
$189.99








5.14.String Format
5.14.1..NET String Format Characters
5.14.2.Use String.Format() to format a value.
5.14.3.String format: {0,3:D}, {1,8:D}
5.14.4.Use ToString to format double: C
5.14.5.String format: {0:C}
5.14.6.Formatting Using the R Format Specifier
5.14.7.String and WriteLine Format Specifiers