for example:
const decimal dollars = 25.50M;
why do we have to add that M?
why not just do:
const decimal dollars = 25.50;
since it already says decimal, doesnt it imply that 25.50 is a decimal?
|
for example:
why do we have to add that why not just do:
since it already says |
||||
|
|
|
No.
Except for lambda expressions, anonymous methods, and the conditional operator, all C# expressions have a fixed type that does not depend at all on context. Imagine what would happen if the compiler did what you want it to, and you called |
|||||||||||||||||
|
|
There are two important concepts to understand in this situation.
Essentially what you are asking is whether a literal value can be implicitly converted between 2 types. The compiler will actually do this for you in some cases when there would be no loss in precision. Take this for example:
This is possible because a Decimal: ±1.0 × 10−28 to ±7.9 × 1028 Double: ±5.0 × 10−324 to ±1.7 × 10308 With knowledge it becomes clear why an implicit conversion is a bad idea. Here is a list of implicit conversions that the C# compiler currently supports. I highly recommend you do a bit of light reading on the subject. |
|||||
|
|
Note also that due to the inner details of how doubles and decimals are defined, slight rounding errors can appear in your assignments or calculations. You need to know about how floats, doubles, and decimals work at the bit level to always make the best choices. For example, a double cannot precisely store the value 25.10, but a decimal can. A double can precisely store the value 25.50 however, for fun binary-encoding reasons. |
|||
|