how to display two decimal places in c# whole numbers code example
Example 1: c# double value with 2 decimal places
inputValue = Math.Round(inputValue, 2);
Example 2: decimal c# 2 digits
decimalVar.ToString ("#.##"); // returns "" when decimalVar == 0