Lets say I create a simple workflow containing two variables, result of type Boolean and myInt of type Integer. Now add an activity "Assign", placing result in the result box, and Integer.TryParse("22", myInt) in the right hand expression.
After running this activity, the variable still has the value 0.
Why is the result of the TryParse call not correctly stored in the variable?
(No errors are generated here either)