using System.Collections.Generic;
using Newtonsoft.Json.Linq;
public static void Main()
""comment"": ""Here are some notes about the book""
""comment"": ""And here are more notes on the book""
""comment"": ""Some notes about the journal""
""comment"": ""Additional notes regarding the journal""
""comment"": ""Magazine notes""
""comment"": ""More magazine notes""
var test = JsonConvert.DeserializeObject<TestParse>(json);
foreach (var dict in test.Notes.Data)
Console.WriteLine(kvp.Key + " items:");
foreach (var item in kvp.Value.Items)
Console.WriteLine(item.Page + " - " + item.Comment);
public Note Notes { get; set; }
public IList<IDictionary<string, Source>> Data { get; set; }
public IList<Items> Items { get; set; }
public string Page { get; set; }
public string Comment { get; set; }