dynamicexpresso / DynamicExpresso

C# expressions interpreter

Home Page:http://dynamic-expresso.azurewebsites.net/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Eval typed expression

davideicardi opened this issue · comments

It should be possible to write:

        double result = target.Eval<double>("Math.Pow(x, y) + 5",
                                                new Parameter("x", typeof(double), 10),
                                                new Parameter("y", typeof(double), 2));