show/hide this revision's text 2 added 436 characters in body

You do NOT have to manually unpack the JSON into a .NET type. You've got various libraries that do this for you. I personally prefer JSON.NET. All you'd have to do is something like this:

var deserializedObject = JsonConvert.DeserializeObject<ObjectType>(json);

If you don't want a dependency on a third party library, just use Microsoft's JavaScriptSerializer:

var serializer = new System.Web.Script.Serialization.JavaScriptSerializer();
var deserializedObject = serializer.Deserialize<ObjectType>(json);

Microsoft's documentation for JavaScriptSerializer

show/hide this revision's text 1

You do NOT have to manually unpack the JSON into a .NET type. You've got various libraries that do this for you. I personally prefer JSON.NET. All you'd have to do is something like this:

var deserializedObject = JsonConvert.DeserializeObject<ObjectType>(json);