using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization.Formatters;
using System.ComponentModel.DataAnnotations;
using System.Globalization;
using System.Collections.ObjectModel;
using Newtonsoft.Json.Linq;
using Newtonsoft.Json.Converters;
using Newtonsoft.Json.Serialization;
public enum Flavor : ulong { ValueNotSet, Cherry, Blueberry, Cheese }
public class DanishInventory { public int QtyInStock; public Flavor Flavor; }
public class EnumDefaultValueContractResolver : DefaultContractResolver
protected override JsonProperty CreateProperty(MemberInfo member, MemberSerialization memberSerialization)
var property = base.CreateProperty(member, memberSerialization);
if (property.DefaultValueHandling == null)
if (property.PropertyType.IsEnum)
property.DefaultValueHandling = DefaultValueHandling.IgnoreAndPopulate;
public static void Test()
var resolver = new EnumDefaultValueContractResolver();
var settings = new JsonSerializerSettings { ContractResolver = resolver };
foreach (Flavor flavor in Enum.GetValues(typeof(Flavor)))
var inventory = new DanishInventory { Flavor = flavor };
var json = JsonConvert.SerializeObject(inventory, settings);
Console.WriteLine("json for Flavor={0}", json);
var test2 = JsonConvert.DeserializeObject<DanishInventory>(json, settings);
Assert.IsTrue((flavor == default(Flavor)) == !json.Contains(nameof(inventory.Flavor)));
Assert.IsTrue(inventory.Flavor == test2.Flavor);
public static void Main()
Console.WriteLine("Environment version: {0} ({1})", System.Runtime.InteropServices.RuntimeInformation.FrameworkDescription , GetNetCoreVersion());
Console.WriteLine("{0} version: {1}", typeof(JsonSerializer).Assembly.GetName().Name, 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.CodeBase.Split(new[] { '/', '\\' }, StringSplitOptions.RemoveEmptyEntries);
int netCoreAppIndex = Array.IndexOf(assemblyPath, "Microsoft.NETCore.App");
if (netCoreAppIndex > 0 && netCoreAppIndex < assemblyPath.Length - 2)
return assemblyPath[netCoreAppIndex + 1];