I have a large JSON file similar to this:
{
\"data\":[
{
\"attribution\":null,
\"tags\":[
\"thenight2\"
],
I have used the JSON class in System.Web.Helpers Namespace (.Net 4.0) previously and it works well for me. You are able to refer to arrays dynamically. It should be used similarly to this:
dynamic myJson = Json.Decode(myJsonString);
foreach (var url in myJson.data.images.standard_resolution){
//DO SOMETHING
}