c# number format 2 decimal places 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: format double to 2 decimal places in c#
priceLbl.Text = price.ToString("0.##");
Example 3: 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 4: decimal c# 2 digits
decimal.Round(yourValue, 2, MidpointRounding.AwayFromZero);