I there a built-in function for proper mathematical rounding in vb.net?
For example, both functions below return 14.00, but they should return 14.01:
Math.Round(14.004999, 2, MidpointRounding.AwayFromZero)
Decimal.Round(14.004999, 2, MidpointRounding.AwayFromZero)
Are there any other methods that do proper mathematical rounding?