Skip to content

v2.1.1

Compare
Choose a tag to compare
@JonathanMagnan JonathanMagnan released this 06 Jun 19:49
· 233 commits to master since this release

Download the library here

FIXED: Full namespace used in Generic Type (Issue #7)

Example:

var context = new EvalContext();
context.RegisterType(typeof(System.Collections.Generic.List<>));
context.RegisterType(typeof(string));

//Not Error
var xx2 = context.Compile<Func<System.Collections.Generic.List<System.String>, object>>(@"
	var lst = new System.Collections.Generic.List<List<System.String>>();
	return lst;", "reader");

//Error
var xx = context.Compile<Func<System.Collections.Generic.List<System.String>, object>>(@"
	var lst = new System.Collections.Generic.List<System.Collections.Generic.List<System.String>>();
	return lst;", "reader");

PRO Version unlocked for the current month (June)