i was trying to evaluate expression using NCalc,
Expression ex = new Expression("3[X] + 4[Y]");
ex.Parameters["X"] = 10;
ex.Parameters["Y"] = 20;
I have been getting this error:
missing EOF at '[x]' at line 1:1
Not sure why I have getting this error? Does the square brackets for variables have something to do with this?