Parse floats with invariant culture
This commit is contained in:
parent
5ceda408da
commit
bfa0e4d338
@ -74,7 +74,7 @@ public class SeriesOrder : IFormattable
|
|||||||
continue;
|
continue;
|
||||||
|
|
||||||
var substring = numString[s..e];
|
var substring = numString[s..e];
|
||||||
if (float.TryParse(substring, out value))
|
if (float.TryParse(substring, System.Globalization.CultureInfo.InvariantCulture, out value))
|
||||||
{
|
{
|
||||||
range = new Range(s, e);
|
range = new Range(s, e);
|
||||||
return true;
|
return true;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user