string format c# decimal code example
Example 1: c# format string with 2 decimals
String.Format("{0:0.00}", 123.4567);
String.Format("{0:0.00}", 123.4);
String.Format("{0:0.00}", 123.0);
Example 2: c# format string with 2 decimals
String.Format("{0:0.##}", 123.4567);
String.Format("{0:0.##}", 123.4);
String.Format("{0:0.##}", 123.0);
Example 3: c# format string with 2 decimals
String.Format("{0:00.0}", 123.4567);
String.Format("{0:00.0}", 23.4567);
String.Format("{0:00.0}", 3.4567);
String.Format("{0:00.0}", -3.4567);
Example 4: vb.net tostring numeric format string
decimal value = 123.456m;
Console.WriteLine("Your account balance is {0:C2}.", value);