vote up 0 vote down star
1

I'm sorry, a know that it is not sow serious ....

i want to do some operation in C#, How I can do this one ?

decimal resultTK = (42 - Convert.ToDecimal(RouteA.Text)) * 21.25 ;
lblResultA.Text = Convert.ToString(resultTK);

I have some error in Data Type !

Thanks!

flag

71% accept rate

1 Answer

vote up 3 vote down check

You are trying to implicitly convert between decimal and double. Try:

decimal resultTK = (42 - Convert.ToDecimal(RouteA.Text)) * 21.25M;

(the M on the constant specifies that it is a decimal)

link|flag
As M is short for Money, which the Decimal type is an alias of... – David Andres Sep 21 at 2:51
hmm, but this one doesn't count correctly – Alexander Corotchi Sep 21 at 2:57
Alexander: what do you mean? – David Andres Sep 21 at 3:12

Your Answer

Get an OpenID
or

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