I am running into a weird instance in C#(.net) where I believe the rounding is incorrect in the framework.
Math.Round(9.995, 2, MidpointRounding.AwayFromZero)
When I round this value, I get back 9.99. With the MidpointRounding.AwayFromZero set to this logic, my assumption is that it would round up to 10. Case in point:
Math.Round(9.95, 1, MidpointRounding.AwayFromZero)
Rounds to 10. It seems these results are inconsistent, but can anyone explain why or what I can do to help ensure proper rounding is applied?
Thanks!