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.
it rounds the values?? No they are equal. – L.B Oct 19 '12 at 6:54