Deserializing a mixed collection of strings and objects with Json.NET
I'm working on a library to parse Minecraft JSON files. However, they have a slightly weird format that I can't figure out how to parse with Newtonsoft's JSON.net: { "values": [ "some_object", "another_object", { "name": "third_object", "required": false } ]…