Skip to content

v2.1.9

Choose a tag to compare

@JonathanMagnan JonathanMagnan released this 11 Jul 18:59
· 223 commits to master since this release

Download the library here

FIXED: Issue with iterating on type that doesn't inherit from IEnumerable directly

public class MyList
{
	public ConcurrentDictionary<int, string> Names { get; set; }
}

var context = new EvalContext();
context.RegisterType(typeof(MyList));

var compiled = context.Compile<Func<MyList, string>>("var eCount = \"\"; foreach (var name in Names.Values) { eCount += name; } eCount;");

PRO Version unlocked for the current month (July)