Use Math.Ceiling to always round up.
int number = 236;
number = (int)Math.Ceiling(number int)(Math.Ceiling(number / 10.0d)10.0d) * 10);
Modulus(%) gets the remainder, so you get:
// number = 236 + 10 - 6
Put that into an extension method
public static roundupbyten(this int i){
// return i + (10 - i % 10); <-- logic error. Oops!
return (int)Math.Ceiling(i int)(Math.Ceiling(i / 10.0d)10.0d)*10); // fixed
}
// call like so:
int number = 236.roundupbyten();
above edited: I should've gone with my first instinct to use Math.Ceiling
