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 interface IInterface<out M>
public class Implementation<M> : IInterface<M>
public Implementation(M message, string str)
M IInterface<M>.Message => this.Message;
string IInterface<M>.Str => this.Str;
public class MyConverter : JsonConverter
public override bool CanConvert(Type objectType) =>
objectType.IsGenericType && objectType.GetGenericTypeDefinition() == typeof(IInterface<>);
public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer)
if (!CanConvert(objectType))
throw new ArgumentException(string.Format("Invalid type {0}", objectType));
var concreteType = typeof(Implementation<>).MakeGenericType(objectType.GetGenericArguments());
return serializer.Deserialize(reader, concreteType);
public override bool CanWrite => false;
public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer) => throw new NotImplementedException();
public static void Test()
var js_object_string = @"{ ""Message"" : { ""X"": 100 }, Str : ""abc"" }";
JsonConvert.DefaultSettings = () => new JsonSerializerSettings
Converters = { new MyConverter() },
var root = JsonConvert.DeserializeObject<IInterface<Sample>>(js_object_string);
Console.WriteLine("Deserialized {0}:", "IInterface<Sample>");
var json2 = JsonConvert.SerializeObject(root);
Console.WriteLine("Re-serialized {0}:", "IInterface<Sample>");
Console.WriteLine(json2);
Assert.IsTrue(JToken.DeepEquals(JToken.Parse(js_object_string), JToken.Parse(json2)));
Assert.AreEqual(100, root.Message.X);
Assert.AreEqual("abc", root.Str);
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.Location.Split(new[] { '/', '\\' }, StringSplitOptions.RemoveEmptyEntries);
int netCoreAppIndex = Array.IndexOf(assemblyPath, "Microsoft.NETCore.App");
if (netCoreAppIndex > 0 && netCoreAppIndex < assemblyPath.Length - 2)
return assemblyPath[netCoreAppIndex + 1];