First page Back Continue Last page Overview Text

Notes:


If you do calculations that mix different types, decimals will interact just fine with int and longs. The result is as if the integer types were converted to decimal.

Trying to perform operations with strings fails... and you should have known better anyway!

Trying to mix with floats fails. You would need to be an expert to make it work correctly anyhow, so it's almost certainly not what you intended to do. If you really MUST mix them, convert to strings first.