I have a requirement to perform rounding of values with negative precision. As far as I've checked, Math.Round()
in .NET does not support negative precision. For example:
ROUND(43.34566,-1)
The above returns 40.
Please suggest how to achive this.