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 method

public void MyMethod(decimal val)
{

}

I want to call this method like this

MyMethod(4.6)

and it's not happy, presumably, it's thinking 4.6 is a double, not a decimal. What is a way to get it to recognize it as a decimal without having to go Convert.ToDecimal(4.6)

share|improve this question
Or if you really don't like yourself (decimal)4.6 – Joel Etherton Nov 23 '10 at 5:17
1  
"and it's not happy" -- is that what the compiler error says ;) – Juliet Nov 23 '10 at 15:08
Consider marking an answer as "accepted". – Robin Maben Apr 4 '12 at 17:34

4 Answers

up vote 15 down vote accepted

MyMethod(4.6m)

share|improve this answer

Use decimal literals: http://msdn.microsoft.com/en-us/library/364x0z75.aspx

decimal myMoney = 99.9m;
share|improve this answer

You will have to suffix M or m at de end of the literal.

Eg:

 decimal myValue = 70.5M; //70.5m
 double doubleValue = 98.99;

And while calling, you do

 MyMethod(myValue ); 

In case of doubles

MyMethod((decimal)doubleValue); //i.e you cannot suffix M to a non-literal

MyMethod(doubleValueM);  // Is wrong
share|improve this answer
Oh damn, 3 answers in 10 seconds! ..this was a no-brainer i think. – Robin Maben Nov 23 '10 at 5:17
hehe i figured it was quicker than actually looking it up in google – Diskdrive Nov 23 '10 at 5:24
I couldn't believe my luck when I saw this question at the top of the page, with no answers yet! – Carson63000 Nov 23 '10 at 6:24

For decimal input with correct precision use m or M at the end of the literal value

like if you need to pass 4.6 than use 4.6m as parameter.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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