Example #1
0
        public object ParseInfixExpression()
        {
            var str  = ReadInfixExpressionString();
            var code = Infix.CompileString(str);

            return(code);
        }
Example #2
0
        public static object CompileString(string str)
        {
            var compiler = new Infix(str);

            return(compiler.Compile());
        }
Example #3
0
 public static object CompileString(string str)
 {
     var compiler = new Infix(str);
     return compiler.Compile();
 }