[SOLVED] Need a little help debugging my code.
Posted: Wed Mar 25, 2009 11:11 am
I need to figure out why it keeps saying "cannot implicity convert double to parse"
This the snippet im having trouble with.
I have tried a few things maybe you can help me out...
This is the entire code in visual c#
This the snippet im having trouble with.
Code: Select all
//Height in Centimeters
hc = ((heightfeet * 12) * 2.54) + (heightinch * 2.54);
//Weight in Kilograms
wk = (weightpounds) / (2.2);
This is the entire code in visual c#