Skip to content

Instantly share code, notes, and snippets.

View jtillman's full-sized avatar
🌍
Changing the world!

Jeremy Tillman jtillman

🌍
Changing the world!
View GitHub Profile
@jtillman
jtillman / AbstractClassJsonConverter
Last active March 1, 2018 13:41
JsonConverter to setup a Polymorphic Use of Json Serialization
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
namespace polymorphic
{