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

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

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