Skip to content

v4.0.44

Choose a tag to compare

@JonathanMagnan JonathanMagnan released this 14 Jun 17:48
· 5 commits to master since this release
6c074c6

Download the library here

  • ADDED: Method RegisterAutoAddMissingTypeAssembly, UnregisterAutoAddMissingTypeAssembly, IsRegisterAutoAddMissingTypeAssembly
  • UPDATED: Monthly Trial Release

The method RegisterAutoAddMissingTypeAssembly let you register assembly that the option AutoAddMissingTypes will look to add the missing type (all domain assembly by default) to solve the expression

var context = new EvalContext();
context.RegisterAutoAddMissingTypeAssembly(typeof(Something).Assembly);
context.AutoAddMissingTypes = true;

var x = context.Execute("new CustomTest();");

Trial unlocked until the end of July