Skip to content

Releases: zzzprojects/Eval-Expression.NET

v4.0.53

09 Sep 12:15
6c074c6
Compare
Choose a tag to compare

Download the library here

  • FIXED: Incorrect number of arguments supplied for lambda invocation #110 (Issue 2 with params argument)

Trial unlocked until the end of September

v4.0.52

02 Sep 18:02
6c074c6
Compare
Choose a tag to compare

Download the library here

  • FIXED: Compile fail #114

Trial unlocked until the end of September

v4.0.51

25 Aug 14:39
6c074c6
Compare
Choose a tag to compare

Download the library here

  • FIXED: Something wrong with typeof #106
  • FIXED: No applicable member? #113
  • FIXED: GenericArguments[0], 'System.String', on 'System.Nullable`1[T]' violates the constraint of type 'T'. #112
  • FIXED: Incorrect number of arguments supplied for lambda invocation #110

Trial unlocked until the end of September

v4.0.50

17 Aug 23:53
6c074c6
Compare
Choose a tag to compare

Download the library here

  • UPDATED: Monthly Trial Release

Trial unlocked until the end of September

v4.0.49

06 Aug 04:13
6c074c6
Compare
Choose a tag to compare

Download the library here

  • IMPROVED: Support to is with basic values such as x is 9 and x is not 9

Trial unlocked until the end of August

v4.0.48

28 Jul 19:09
6c074c6
Compare
Choose a tag to compare

Download the library here

  • ADDED: Support to is with basic value such as x is 9 and x is not 9
  • FIXED: An error occurred while parsing the interpolated string. #108

Trial unlocked until the end of August

v4.0.47

20 Jul 03:16
6c074c6
Compare
Choose a tag to compare

Download the library here

  • FIXED: Something wrong with typeof #106

Trial unlocked until the end of August

v4.0.46

14 Jul 00:56
6c074c6
Compare
Choose a tag to compare

Download the library here

  • FIXED: Issue when a Nullable type could have been considered as a ternary operator
  • FIXED: Issue when a ConditionalMemberAccess was not working with a nullable type
  • FIXED: ? . are not considered as ?. (without space)
  • FIXED: ? [ are not considered as ?[ (without space)
  • UPDATED: Monthly Trial Release

Trial unlocked until the end of August

v4.0.45

17 Jun 03:54
6c074c6
Compare
Choose a tag to compare

Download the library here

  • FIXED: Exception handling nulls #105
  • IMPROVED: Constant folding to support nullable

Trial unlocked until the end of July

v4.0.44

14 Jun 17:48
6c074c6
Compare
Choose a tag to compare

Download the library here

  • ADDED: Method RegisterAutoAddMissingTypeAssembly, UnregisterAutoAddMissingTypeAssembly, IsRegisterAutoAddMissingTypeAssembly
  • UPDATED: Monthly Trial Release

The method RegisterAutoAddMissingTypeAssembly let you register assembly that the option AutoAddMissingTypes will look to add the missing type (all domain assembly by default) to solve the expression

var context = new EvalContext();
context.RegisterAutoAddMissingTypeAssembly(typeof(Something).Assembly);
context.AutoAddMissingTypes = true;

var x = context.Execute("new CustomTest();");

Trial unlocked until the end of July