c# format double to 2 decimal places code example
Example 1: c# double value with 2 decimal places
inputValue = Math.Round(inputValue, 2);
Example 2: format double to 2 decimal places in c#
priceLbl.Text = price.ToString("0.##");
inputValue = Math.Round(inputValue, 2);
priceLbl.Text = price.ToString("0.##");