Releases: zzzprojects/Eval-Expression.NET
Releases · zzzprojects/Eval-Expression.NET
v2.0.8
Download the library here
FIXED: Null reference issue with null parameter (Issue #6)
Example
dynamic expandoObject = new ExpandoObject();
expandoObject.Property1 = false;
expandoObject.Property2 = null;
if (Eval.Execute<bool>(@"Property1 == null", expandoObject ))
{
Console.WriteLine(@"Property1 == true");
}
PRO Version unlocked for the current month (May)
v2.0.6
Download the library here
ADDED: Example project
PRO Version unlocked for the current month (May)
v2.0.5
Download the library here
FIXED: Issue with anonymous type and getter
dynamic item = Eval.Execute("var x = new { X = 1, Y = 2}; return x;");
var valueX = item.X;
PRO Version unlocked for the current month (April)
v2.0.4
Download the library here
PRO Version unlocked for the current month (April)
v2.0.3
Download the library here
FIXED: Issue with "Setup License from config file" starting with version 2.0.0
PRO Version unlocked for the current month (March)
v2.0.2
Download the library here
PRO Version unlocked for the current month (February)
v2.0.0
Download the library here
BREAKING CHANGES: The library is NOT LONGER free until 50 characters
ADDED: Support to .NET60
ADDED: Support to NETSTANDARD1_3
FIXED: Issue with method overloads
FIXED: Some small issues
PRO Version unlocked for the current month (January)
v1.0.36
Download the library here
FIXED: Issue with Constructor && Namespace
v1.0.35
Download the library here
FIXED: License key algorithm for system with FIPS enabled
PRO Version unlocked for the current month (Unlimited characters)
v1.0.34
Download the library here
FIXED: Issue with namespace + new keyword + property/index access
int i2 = Eval.Execute<int>("new List<int> {0, 1, 2, 3}[2];");
PRO Version unlocked for the current month (Unlimited characters)