Changed Invariant calls to good ol' ToString
This commit is contained in:
parent
837d5ff523
commit
0eb74015f4
|
@ -2,8 +2,6 @@
|
|||
|
||||
namespace Ooui
|
||||
{
|
||||
using static System.FormattableString;
|
||||
|
||||
public class JsonConvert
|
||||
{
|
||||
public static void WriteJsonString (System.IO.TextWriter w, string s)
|
||||
|
@ -61,13 +59,13 @@ namespace Ooui
|
|||
WriteJsonString (w, c.ToString ());
|
||||
break;
|
||||
case double d:
|
||||
w.Write (Invariant ($"{d}"));
|
||||
w.Write (d.ToString (System.Globalization.CultureInfo.InvariantCulture));
|
||||
break;
|
||||
case int i:
|
||||
w.Write (Invariant ($"{i}"));
|
||||
w.Write (i.ToString (System.Globalization.CultureInfo.InvariantCulture));
|
||||
break;
|
||||
case float f:
|
||||
w.Write (Invariant ($"{f}"));
|
||||
w.Write (f.ToString (System.Globalization.CultureInfo.InvariantCulture));
|
||||
break;
|
||||
case null:
|
||||
w.Write ("null");
|
||||
|
|
Loading…
Reference in New Issue