vote up 0 vote down star

how do i round off decimal values ?
Example :

decimal Value = " 19500.98"

i need to display this value to textbox with rounded off like " 19501 "

if decimal value = " 19500.43"

then

value = " 19500 "

flag

38% accept rate
There is more than one way to round numbers, depending on the application domain you need to be careful to use the right kind of rounding at the right time. – Richard Apr 23 at 8:48

4 Answers

vote up 7 vote down check

Look at Math.Round(decimal) or the overload which takes a MidpointRounding argument.

Of course, you'll need to parse and format the value to get it from/to text. If this is input entered by the user, you should probably use decimal.TryParse, using the return value to determine whether or not the input was valid.

string text = "19500.55";
decimal value;
if (decimal.TryParse(text, out value))
{
    value = Math.Round(value);
    text = value.ToString();
    // Do something with the new text value
}
else
{
    // Tell the user their input is invalid
}
link|flag
opps !!! its 19500.98 – Girish1984 Apr 23 at 6:59
I've fixed the question and my answer accordingly. – Jon Skeet Apr 23 at 7:09
vote up 2 vote down

Math.Round( value, 0 )

link|flag
vote up 0 vote down
d = decimal.Round(d);
link|flag
vote up 0 vote down

Try this...

 var someValue=123123.234324243m;
 var strValue=someValue.ToString("#");
link|flag

Your Answer

Get an OpenID
or

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