v2.1.1
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)