neuecc / Utf8Json

Definitely Fastest and Zero Allocation JSON Serializer for C#(NET, .NET Core, Unity, Xamarin).
MIT License
2.35k stars 266 forks source link

#243 fix Unable to deserialize doubles with too many digits #247

Open tomsoftware opened 3 years ago

tomsoftware commented 3 years ago

Problem was some missing System.Globalization.CultureInfo.InvariantCulture so on a non English system the "." was interpreted as a 1000-seperator not as a decimal seperator in the fallback code of ComputeGuess

tomsoftware commented 3 years ago

almost same fix in PR #102