Is there a function the the .Net framework that can evaluate a numering expression contained in a string and return the numeric result? IE:
string mystring = "3*(2+4)";
int result = EvaluateExpression(mystring);
Console.Writeln(result);
prints 18.
Is there a standard framework function that you can replace my EvaluateExpression with ?