c# round to 2 decimal places double code example
Example 1: c# double value with 2 decimal places
inputValue = Math.Round(inputValue, 2);
Example 2: c# round to 2 decimal places
decimal b = 1.995555M;
Math.Round(b, 2); //returns 2.00
inputValue = Math.Round(inputValue, 2);
decimal b = 1.995555M;
Math.Round(b, 2); //returns 2.00