using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization.Formatters;
using System.ComponentModel.DataAnnotations;
using System.Globalization;
using System.Collections.ObjectModel;
using System.Text.Json.Serialization;
public class DoubleConverter : JsonConverter<double>
public override double Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) =>
public override void Write(Utf8JsonWriter writer, double value, JsonSerializerOptions options)
var s = value.ToString("F1", NumberFormatInfo.InvariantInfo);
var d = decimal.Parse(s, NumberFormatInfo.InvariantInfo);
writer.WriteNumberValue(d);
Console.WriteLine("Value {0} threw exception {1}", s, e.Message);
writer.WriteNumberValue(value);
public static void Test()
(double)(0.99m*decimal.MaxValue),
foreach (var d in doubles)
var options = new JsonSerializerOptions
Converters = { new DoubleConverter() },
var json1 = JsonSerializer.Serialize(d);
var json = JsonSerializer.Serialize(d, options);
Console.WriteLine("Original JSON = {0}, fixed JSON = {1}", json1, json);
public static void Main()
Console.WriteLine("Environment version: {0} ({1})", System.Runtime.InteropServices.RuntimeInformation.FrameworkDescription , GetNetCoreVersion());
Console.WriteLine("System.Text.Json version: " + typeof(JsonSerializer).Assembly.FullName);
Console.WriteLine("Failed with unhandled exception: ");
public static string GetNetCoreVersion()
var assembly = typeof(System.Runtime.GCSettings).GetTypeInfo().Assembly;
var assemblyPath = assembly.Location.Split(new[] { '/', '\\' }, StringSplitOptions.RemoveEmptyEntries);
int netCoreAppIndex = Array.IndexOf(assemblyPath, "Microsoft.NETCore.App");
if (netCoreAppIndex > 0 && netCoreAppIndex < assemblyPath.Length - 2)
return assemblyPath[netCoreAppIndex + 1];