show/hide this revision's text 5 edited tags
show/hide this revision's text 4 edited title

Built in .Net algorithm to round value up to the nearest 10 interval

show/hide this revision's text 3 added 195 characters in body

How to, in C# round up any value to 10 interval? For example, if I have 11, I want it to return 10, if I have 136, then I want it to return 140.

I can easily do it by hand

return ((int)( number/10))*10

But I am looking for an builtin algorithm to do this job, thankssomething like Math.Round(). The reason why I won't want to do by hand is that I don't want to write same or similar piece of code all over my projects, even for something as simple as the above.

show/hide this revision's text 2 deleted 1 characters in body; edited tags
show/hide this revision's text 1