public static decimal RoundDecimalValue(decimal dNum) // dNum = 2.1311 { return Math.Round(dNum, 2); // returns 2.13 }
Login to post response