File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
CodingSeb.ExpressionEvaluator Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 1
1
/******************************************************************************************************
2
2
Title : ExpressionEvaluator (https://github.com/codingseb/ExpressionEvaluator)
3
- Version : 1.3.3.2
3
+ Version : 1.3.3.3
4
4
(if last digit (the forth) is not a zero, the version is an intermediate version and can be unstable)
5
5
6
6
Author : Coding Seb
@@ -786,6 +786,7 @@ public ExpressionEvaluator()
786
786
Assemblies . AddRange ( AppDomain . CurrentDomain . GetAssemblies ( ) ) ;
787
787
instanceCreationWithNewKeywordRegex = new Regex ( InstanceCreationWithNewKeywordRegexPattern ) ;
788
788
numberRegex = new Regex ( string . Format ( numberRegexPattern , @"\." ) , RegexOptions . IgnoreCase ) ;
789
+ cultureInfoForNumberParsing . NumberFormat . NumberDecimalSeparator = "." ;
789
790
castRegex = new Regex ( CastRegexPattern ) ;
790
791
}
791
792
You can’t perform that action at this time.
0 commit comments