Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a decimal value (like 12.30, 9.45, 20.20 etc....) which is working fine on local system i.e. Win7, but when we test it on our testing WinXP machine it rounds the values as following of above

12.30 -> 12.3
9.45  -> 9.45
20.20 -> 20.2

After using string.Format as below it gives me correct result

decimal b = 9.2m;
String.Format("{0:0.00}", b)

But i want to ask that is there is a any method that should give me correct value without convert it to string.

share|improve this question
12  
it rounds the values?? No they are equal. – L.B Oct 19 '12 at 6:54
1  
Exactly. What you see is a difference when displaying them, basically also converting them to strings first. – Mr Lister Oct 19 '12 at 6:55
2  
I think the question here is how, these decimals are displayed with trailing zeros on one machine ? without string formatting – Habib Oct 19 '12 at 6:56
2  
Is there a reason 12.3 is incorrect as opposed to 12.30? – mlorbetske Oct 19 '12 at 6:59
2  
somehow related: stackoverflow.com/questions/5324988/… – Caspar Kleijne Oct 19 '12 at 6:59
show 6 more comments

closed as not a real question by Daniel Hilgarth, Ram kiran, cdeszaq, ZyX, Bill the Lizard Oct 21 '12 at 13:37

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

Short answer: Yes, you will always need to do that in the .ToString() method, you cant do it in the decimal number.

Take for example:

decimal a = 3.1415;

The only thing that is stored in a is the value of the number you entered. The variable a does not contain any information regarding which decimal separator is used, and how it should be rounded.

Why not? The variable stores a value, nothing more. All other settings regarding how to display the number are handled in the .ToString() method, because any object that is shown on the frontend will have its ToString method called eventually.

Why is that? Well, take me as an example. I live in Belgium; where the decimal separator is a , (comma) and the thousand separator is a . (dot). If you were to send your decimal number to me, I would only need the value. My computer will know how to display the number for me. All I need is the mathematical/numerical value of the variable. Therefore, only that value is stored. All other settings are localized (can be different for other regions).

If you don't call ToString yourself, the default will be used (which, as you stated, cuts of the decimal 0).

If you call ToString yourself, you will have the option to specify how you want the number printed. And this is what you need.

share|improve this answer
You would get similar output if you call ToString() even on your culture as the base value from database will always be the same. – Damien Joe Oct 19 '12 at 9:16
True. Unless I run the app/database on my PC. Which is what I meant :) – Flater Oct 19 '12 at 13:24

Zeroes before decimal are important but why worry about zeroes in the last ? A 2 can be expressed as 2.00000000000 or 2.00 or 2.0000000 or simply 2. I would not worry unless it is a code string of some sort.

share|improve this answer
It is important to standardize your output formats. (see my comments regarding decimal precision). – Flater Oct 19 '12 at 7:38
@Flater He said 'It rounds the values as following of above' which is not right as 2,300 and 23,00.00 is eventually the same. Even for your certain culture (2.300,00 or 2.300,00000) it is the same thing. – Damien Joe Oct 19 '12 at 9:19

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