Closed GoogleCodeExporter closed 9 years ago
Same is true for serialisation.
So changing the JsonWriter-Methods Value(double value) and Value(float value)
to
_writer.Write(value.ToString("R",
System.Globalization.CultureInfo.CreateSpecificCulture("en-US").NumberFormat));
instead of
_writer.Write(value.ToString("R");
fixes the problem for me
Original comment by armin...@gmx.de
on 22 Jan 2009 at 2:11
Thanks for the code. I think I will try using the InvariantCulture.
Original comment by elliott....@gmail.com
on 22 Jan 2009 at 4:19
Original comment by elliott....@gmail.com
on 26 Jan 2009 at 12:57
3.0 Release
Original comment by elliott....@gmail.com
on 26 Jan 2009 at 2:22
Original issue reported on code.google.com by
armin...@gmx.de
on 20 Jan 2009 at 9:57