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 bool Value { get; set; }
public bool Value { get; set; }
public double DoubleValue { get; set; }
public static void Test()
foreach (var value in new [] { false, true })
var model = new Model { Value = value };
Console.Write("Serializing {0} with value = {1}: ", model, value);
var options = new JsonSerializerOptions { DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingDefault };
var json = JsonSerializer.Serialize(model, options);
foreach (var doubleValue in new [] { 0.0, 1.0 })
var model2 = new Model2 { Value = value, DoubleValue = doubleValue };
Console.Write(" Serializing {0} with value = {1}, DoubleValue={2}: ", model2, value, doubleValue);
Console.WriteLine(JsonSerializer.Serialize(model2, options));
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];