You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ADDED: Support to nameof operator: Is it possible to support nameof operator? #98
ADDED: Support to EvalManager.DefaultContext.AddMethod() and method directory in the code:
// add a method for the current execution onlyvarr1=Eval.Execute(@"public int AddValue1(int x, int y){ return x + y;}return AddValue1(1, 2);");// add a method to the context for any executionEvalManager.DefaultContext.AddMethod(@"public int AddValue2(int x, int y){ return x + y;}");varr2=Eval.Execute("AddValue2(1, 2)");
ADDED: The compiler will now include automatically some type passed in the lambda expression IMPROVED: Constructor logic to use the Method resolution to handle more scenarios