I want to evaluate the string expression and convert the result to bool.
For example
string expression = !((71 > 70) && (80 > 71)) || 72 < 71 ;
the above expression has to evaluate and return true.
Can anyone suggest how to evaluate the expression and return bool value?