I have a double value: 0.314285 which I want to Round off to 5 decimal places. From a mathematical point of view my expectant result is: 0.31429. In my code I use the Math.Round with MidPointRounding.AwayFromZero
parameter overload, the resultant output being: 0.31428.
Is there another way to implement to have the output result as: 0.31429??