Releases: zzzprojects/Eval-Expression.NET
Releases · zzzprojects/Eval-Expression.NET
v4.0.33
v4.0.32
v4.0.31
Download the library here
- ADDED: Add
IsRegisteredGlobalConstant
,IsRegisteredGlobalVariable
,IsRegisteredLocalVariable
that check if the name is already registered or not. More similar method to come soon. - ADDED:
Eval.Tokenize(code)
method that allows you to get what has been "tokenized" by our library. - ADDED:
IsCaseSensitive
option for Not Case Sensitive? #95 - FIXED:: Ambiguous match? #93
Trial unlocked until the end of February
v4.0.30
Download the library here
- ADDED: Support to
delegate
keyword
var delegateAction = Eval.Execute<Action>(@"Action greet = delegate { Console.WriteLine(""Hello!""); };");
delegateAction();
var delegateFunc = Eval.Execute<Func<int, int, int>>(@"Func<int, int, int> sum = delegate (int a, int b) { return a + b; }; return sum;");
var x1 = delegateFunc(1, 2);
Trial unlocked until the end of February
v4.0.29
Download the library here
- UPDATED: Monthly Trial Release
- FIXED: Ambiguous match found for: 'TryParse' for int, bool, DateTime #90
- FIXED: Cannot define a Func like this? #91
- FIXED: Is it possible to support using an anonymous method to declare and initialize a delegate? #92
Trial unlocked until the end of February