jQuery makes it easy to parseJSON using $.parseJSON()
Example:
var json = $.parseJSON("[{ name: 'Bill', age: 22, hair: 'Brown' }]");
Then can easily get the data like this:
var name = json[0].name; var age = json[0].age; ....
Is this something not possible in C#? I saw how JSON.Net reads JSON and exposes it in C#, and it's quite a task to work with it.
Isn't there a way to easily/quickly get JSON just like you can in jQuery?
(and without having to write static code first JSON to Object Class properties to match the JSON object.)