using System.Collections.Generic;
using Newtonsoft.Json.Linq;
public static void Main()
""blah"": ""nothing interesting here""
""desc"": ""description of foo""
""desc"": ""blurb about bar""
""desc"": ""buzz about baz""
JArray ja = JArray.Parse(json);
List<Item> list = ja[1].ToObject<List<Item>>();
foreach (Item item in list)
Console.WriteLine("(" + item.Id + ") " + item.Name + " - " + item.Description);
public int Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }