I am trying to serialize/deserialize a Dictionary in C#. Object can be anything that is serializable.
Dictionary
Json.NET almost works, but i
Assuming you have access to modify the object class, you can add the JsonCoverter attribute to the enum member of the class.
[JsonConverter(typeof(StringEnumConverter))]