J
Jim Stools
How do I do this: result needs to be a decimal to 2 places? I get casting
problems on the below:
double myPrice = 1200.125;double myShares = 354.288;
decimal myTotal;
myTotal = myPrice * myShares;
Thanks,
problems on the below:
double myPrice = 1200.125;double myShares = 354.288;
decimal myTotal;
myTotal = myPrice * myShares;
Thanks,