Guys I have to evaluate a mathematical expression(which is represented by a string). Till now I had simple expressions thus the following was working fine
var result = new DataTable().Compute(STRING_HERE, null);
However now my string expression is becoming a bit more complex and the above method is starting to give errors.
Any idea of how I can handle this situation ?
Please I would like some kind of inbuilt method or function like apporach(preferably).