I need to round a double to nearest five. I can\'t find a way to do it with the Math.Round function. How can I do this?
What I want:
70 = 70 73.5 = 7
Try:
Math.Round(value / 5.0) * 5;