C#C
C#4y ago
46 replies
Cyanox

Parsing JSON

I'm struggling to parse and iterate over a JSON array of "key/object" elements. For instance, something in this format:

{
   "key1":{
      "param1":value,
      "param2":value
   },
   "key2":{
      "parm1":value,
      "param2":value
   }
}


Using Netwonsoft for JSON parsing.
Was this page helpful?