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

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

I blogged about this when calculating UPC check digits.

show/hide this revision's text 2 correcting the code

Use ModMath.Ceiling

int number = 236;
number += 10 - number % 10(int)Math.Ceiling(number / 10.0d);

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 / 10.0d); // fixed
}

// call like so:
int number = 236.roundupbyten();

above edited: I should've gone with my first instinct to use Math.Ceiling

I blogged about this when calculating UPC check digits.

show/hide this revision's text 1

Use Mod

int number = 236;
number += 10 - number % 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);
}

// call like so:
int number = 236.roundupbyten();