Ejemplo n.º 1
0
 private static void EvaluateExpression(string s)
 {
     var operators = new Stack <string>();
     var values    = new Stack <int>();
 }