This is the first time I encountured this difficulty. I'm trying to parse a simple json with c# using newtonsoft.net but I don't know how to handle this kind of problem. My json is in this format :
    {
      "events": {
        "119327": {
          "name": "John doe",
          "start": "1524435387600",
          "end": "152446565612800",
          "details": "description"
          "image_url": "http://go/to/url"
        },
        "119217": {
          "name": "John doe",
          "start": "1524534243387600",
          "end": "15244656612800",
          "details": "description"
          "image_url": "http://go/to/url"
        },
        "14397": {
          "name": "John doe",
          "start": "1524386567600",
          "end": "15244143242800",
          "details": "description"
          "image_url": "http://go/to/url"
        }
      }
    }  
Now as you can see the id act like an object and also as the id itself which I will need it later. Can anyone explain to me on how I can get around to this problem. Any approachments? Any help would be highly appreciated. Thanks in advance.
 
     
    