You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, Parse() and TryParse()` in the serialiser are culture dependent. This means that exchanging json data between a UK computer and a Dutch computer for example is likely causing the extraction of incorrect numbers.
For example, double.Parse("0.0045"); would give 45 in a Dutch computer.
GH seems to be set to English mode anyways but Chrome isn't so this impacts the zero-code tools.
The text was updated successfully, but these errors were encountered:
Description:
Currently,
Parse()
and TryParse()` in the serialiser are culture dependent. This means that exchanging json data between a UK computer and a Dutch computer for example is likely causing the extraction of incorrect numbers.For example,
double.Parse("0.0045");
would give45
in a Dutch computer.GH seems to be set to English mode anyways but Chrome isn't so this impacts the zero-code tools.
The text was updated successfully, but these errors were encountered: