Skip to content

Releases: zzzprojects/Eval-Expression.NET

v2.0.8

06 May 19:04
Compare
Choose a tag to compare

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

23 Apr 23:27
Compare
Choose a tag to compare

Download the library here

ADDED: Example project

PRO Version unlocked for the current month (May)

v2.0.5

18 Apr 01:46
Compare
Choose a tag to compare

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

30 Mar 20:53
Compare
Choose a tag to compare

Download the library here

PRO Version unlocked for the current month (April)

v2.0.3

28 Feb 15:50
Compare
Choose a tag to compare

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

30 Jan 23:39
Compare
Choose a tag to compare

Download the library here

PRO Version unlocked for the current month (February)

v2.0.0

02 Jan 03:45
Compare
Choose a tag to compare

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

30 Dec 22:56
Compare
Choose a tag to compare

Download the library here

FIXED: Issue with Constructor && Namespace

v1.0.35

18 Dec 17:52
Compare
Choose a tag to compare

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

15 Dec 01:29
Compare
Choose a tag to compare

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)