Expressions

From Pointui

The expression parsing can handle reasonably complex expressions, except if a certain order of operation is required you must use brackets.

int a = 100, b = 0, c = 1, d = 2, e = 3; 
b = a * TestMethod1(a, (e + TestMethod2(6, 7)) - c);