I have been using the new Http programming stack from Microsoft, WCF Web API, see http://wcf.codeplex.com/releases/view/73399. Very cool stuff! It works really well with their new HttpClient, JsonObject, and the dynamic keyword.
Here, I am calling a REST API to download a JSON object:
See how the string is the JSON string for the object?
Well, next I use the dynamic keyword and JsonValue.Parse to parse this into a dynamic Json object:
Note how it has keys for the two properties…
And notice how because I am using dynamic, I can reference these by property name!...