vote up 7 vote down star
2

I want to do this using the Math.Round function

flag
Feel free to mark an accepted answer :-) – Eoin Campbell Nov 2 '08 at 19:37

6 Answers

vote up 18 vote down

Here's an example:

decimal a = 1.994444M;

Math.Round(a, 2); //returns 1.99

decimal b = 1.995555M;

Math.Round(b, 2); //returns 2.00

You might also want to look at bankers rounding / round-to-even with the following overload:

Math.Round(a, 2, MidPointRounding.ToEven);

There's more information on it here.

link|flag
You should clarify that MidPointRounding.ToEven IS the default. If you wanted AwayFromZero you would have to use the overload – Brian Vander Plaats Feb 23 '09 at 18:25
vote up 9 vote down

twoDec = Math.Round(val, 2)

link|flag
vote up 1 vote down

You should be able to specify the number of digits you want to round to using Math.Round(YourNumber, 2)

You can read more here.

link|flag
vote up 1 vote down

One thing you may want to check is the Rounding Mechanism of Math.Round:

http://msdn.microsoft.com/en-us/library/system.midpointrounding.aspx

Other than that, I recommend the Math.Round(inputNumer, numberOfPlaces) approach over the *100/100 one because it's cleaner.

link|flag
vote up 0 vote down

Wikipedia has a nice page on rounding in general.

All .NET (managed) languages can use any of the common language run time's (the CLR) rounding mechanisms. For example, the Math.Round() (as mentioned above) method allows the developer to specify the type of rounding (Round-to-even or Away-from-zero). The Convert.ToInt32() method and its variations use round-to-even. The Ceiling() and Floor() methods are related.

You can round with custom numeric formatting as well.

Note that Decimal.Round() uses a different method than Math.Round();

Here is a useful post on the banker's rounding algorithm. See one of Raymond's humorous posts here about rounding...

link|flag
vote up -6 vote down

The simple way:

    double number = 65.332;
    double rounded = Math.Round(number * 100) / 100;
link|flag
Eh... you know theres an overload for Math.Round(decimal, int) that takes the number of places to round to. – Eoin Campbell Nov 2 '08 at 16:23

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.