I'm not sure if its a bug, but just noticed a difference on evaluating values from Dictionary object.
Examples:
Lets suppose that the Dictionary.Get("VALUE") = 1
So we evaluate the following:
Dictionary.Get("VALUE") * 50
Result on C2 runtime = 50
Result on C3 runtime = 1
To resolve this issue on C3 runtime we just have to use int function:
int(Dictionary.Get("VALUE")) * 50
Simple, so not a big deal right? But for those who don't know, it may cause trouble when converting an project from C2 to C3 runtime.
Btw... Just to let people know.