Duplicate of: How can I evaluate a C# expression dynamically?
See also: C# eval equivalent?How to evaluate expression. Maybe like:
int a=1;
int b=3;
int c=Eval("a+b");
or
int c=int.parse("1+3*(2+3)");
This seems stupid to me. is it possible in c#?