Releases: zzzprojects/Eval-Expression.NET
Releases · zzzprojects/Eval-Expression.NET
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)
v1.0.32
Download the library here
FIXED: Issue with Nullable<> value
FIXED: Issue with "?." operator with binary expression
FIXED: Issue with "?[]" operator with binary expression
PRO Version unlocked for the current month (Unlimited characters)
v1.0.31
Download the library here
FIXED: Property using '@' as starting character
PRO Version unlocked for the current month (Unlimited characters)
v1.0.30
Download the library here
ADDED: RegisterType && RegisterAssembly now automatically call RegisterExtensionMethod
FIXED: Dynamic LINQ with variable value
PRO Version unlocked for the current month (Unlimited characters)
v1.0.29
Download the library here
ADDED: December 2016 Free Trial
ADDED: Some error message in special situation
PRO Version unlocked for the current month (Unlimited characters)
v1.0.28
Download the library here
ADDED: December 2016 Free Trial
PRO Version unlocked for the current month (Unlimited characters)
v1.0.27
Download the library here
FIXED: Cast to array type
Example:
object bytes = new byte[] { 1, 0, 1};
var t1 = Eval.Execute("byte[] castBytes = (byte[])x", new { x = bytes });
PRO Version unlocked for the current month (Unlimited characters)
v1.0.26
Download the library here
FIXED: String Interpolation mixed with string method
Example:
var s3 = Eval.Execute("My Date: $\"{DateTime.Now.ToString('MM-dd-yyyy')}\"");
var s4 = Eval.Execute("My Date: $'{DateTime.Now.ToString(\"MM-dd-yyyy\")}'");
PRO Version unlocked for the current month (Unlimited characters)