Skip to content

v4.0.66

Compare
Choose a tag to compare
@JonathanMagnan JonathanMagnan released this 07 Dec 17:39
· 2 commits to master since this release
3addeba

Download the library here

  • ADDED: When compiling, parameters can be directly used to resolve extension methods (when not named) such as
context.AddMethod(@"public int GetLevel(this UserTest user)
{
    return Level;
}");

var compiled = context.Compile<Func<UserTest, int>>("GetLevel();");
var result = compiled (user);

Trial unlocked until the end of December