Deserializing some JSON with JSON.NET
I'm very new to JSON, and I need to parse some that an API is providing. A quick google search turned up JSON.NET , so I'm trying to use it now to parse this JSON into a list object. First of all, is JSON.NET the best library to use for this? This is what I'm trying to do: I have a class called Item , for example. The json has many "elements" (if that's what they are called), and each contains 3 fields : an integer named id, a string named name, and a datetime named creationTime. I would like to parse all of these Item "elements" from the json into a list of Item objects . I have created 3