vote up 1 vote down star
1

Anyone know what the C# "M" syntax means?

var1 = Math.Ceiling(hours / (40.00M * 4.3M));
flag

80% accept rate

3 Answers

vote up 8 vote down check

M is the suffix for Decimal. Stands for "money" I assume.

http://msdn.microsoft.com/en-us/library/364x0z75(VS.71).aspx

link|flag
vote up 8 vote down

it means that the number is a decimal type.

link|flag
vote up 5 vote down

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).

link|flag

Your Answer

Get an OpenID
or

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