I have a json array:
{
 "array":[
      {
       "Name_0":"Value_0",
       "Name_1":"Value_1"
      },
      {
       "Name_2":"Value_2",
       "Name_3":"Value_3",
       "Name_4":"Value_4",
       "Name_5":"Value_5"
      }
 ]
}
The data structures inside the json array are not consistent. How can I parse them in C#? Thanks!
 
    