private static void EvaluateExpression(string s) { var operators = new Stack <string>(); var values = new Stack <int>(); }