I have an object like below to be deserialized in C#. I am wondering how I can parse it. I tried following this example here, but am stumped on how I can get my class to recog
It can be done with the JObject in JSON.Net library.
var transactions = JObject.Parse(json).PropertyValues() .Select(o => o.ToObject());
This should do the trick.