Exemplo n.º 1
0
        public static void Main()
        {
            var test       = new NormalizeExpression();
            var testString = test.Process("3 + (5-4)*1");

            Console.WriteLine(testString);
        }
Exemplo n.º 2
0
 private void Given(string input)
 {
     var test = new NormalizeExpression();
     _testString = test.Process(input);
 }
Exemplo n.º 3
0
 public static void Main()
 {
     var test = new NormalizeExpression();
     var testString = test.Process("3 + (5-4)*1");
     Console.WriteLine(testString);
 }