Hello, I needed to resolve a string with an account (eg 2 + 2) in C # and return an integer (eg 4)
static void Main(string[] args)
{
string str = "2 + 2";
int resultado = Calcular(str);
Console.WriteLine("Resultado => {0}",resultado);
Console.ReadLine();
}
Any tips?