Anyone know what the C# "M" syntax means?
var1 = Math.Ceiling(hours / (40.00M * 4.3M));
|
1
|
Anyone know what the C# "M" syntax means?
|
|||
|
|
|
|
M is the suffix for Decimal. Stands for "money" I assume. http://msdn.microsoft.com/en-us/library/364x0z75(VS.71).aspx |
|||
|
|
|
|
it means that the number is a |
||
|
|
|
|
The default interpretation of 40.00 will be a double with the value 40.00, just like the default interpretation of 40 is an int. If you want a decimal or a long instead, you add can append the M (decimal) and L suffixes (long). |
|||
|
|