Skip to content

Commit 4b41d04

Browse files
committed
Version 1.4.28.0
1 parent e78f332 commit 4b41d04

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

CodingSeb.ExpressionEvaluator.Tests/ExpressionEvaluatorTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2640,7 +2640,7 @@ ExpressionEvaluator evaluatorForMethodArgs()
26402640

26412641
#endregion
26422642

2643-
#region for issue #100
2643+
#region for issue #100 Array types in cast or typeof generate an exception
26442644

26452645
yield return new TestCaseData(new ExpressionEvaluator()
26462646
, "typeof(double[])"

CodingSeb.ExpressionEvaluator/CodingSeb.ExpressionEvaluator.csproj

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
<Product>CodingSeb.ExpressionEvaluator</Product>
66
<Description>A Simple Math and Pseudo C# Expression Evaluator in One C# File. Can also execute small C# like scripts</Description>
77
<Copyright>Copyright © Coding Seb 2017</Copyright>
8-
<Version>1.4.27.0</Version>
9-
<AssemblyVersion>1.4.27.0</AssemblyVersion>
10-
<FileVersion>1.4.27.0</FileVersion>
8+
<Version>1.4.28.0</Version>
9+
<AssemblyVersion>1.4.28.0</AssemblyVersion>
10+
<FileVersion>1.4.28.0</FileVersion>
1111
<OutputPath>bin\$(Configuration)\</OutputPath>
1212
<Authors>Coding Seb</Authors>
1313
<PackageId>CodingSeb.ExpressionEvaluator</PackageId>
@@ -19,10 +19,8 @@
1919
<PackageIconUrl>https://github.com/codingseb/ExpressionEvaluator/blob/master/Icon.png?raw=true</PackageIconUrl>
2020
<PackageIcon>Icon.png</PackageIcon>
2121
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
22-
<PackageReleaseNotes>* Manage Nested Types Part 2 (instanciate with new and casting)
23-
* Cast int to enum now work
24-
* Use methods name as method group and try to select the good overide when used as method parameter
25-
* Not perfect but better type inference of generic methods parameters</PackageReleaseNotes>
22+
<PackageReleaseNotes>* Correction of a bug : Int32, Int16 and Int64 were not evaluated when OptionCaseSensitiveEvaluationActive = false
23+
* Array types are now correctly evaluate in typeof and cast ex: typeof(double[]) or (string[])myArray</PackageReleaseNotes>
2624
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
2725
<RepositoryUrl>https://github.com/codingseb/ExpressionEvaluator</RepositoryUrl>
2826
</PropertyGroup>

0 commit comments

Comments
 (0)