Releases: zzzprojects/Eval-Expression.NET
Releases · zzzprojects/Eval-Expression.NET
v4.0.53
v4.0.52
v4.0.51
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
v4.0.49
v4.0.48
v4.0.47
v4.0.46
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
v4.0.44
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