using System.Collections.Generic;
public static void Main()
string json = @"[{""Name"":""Joe Schmoe""}]";
List<Person> people = JsonConvert.DeserializeObject<List<Person>>(json);
people.Add(new Person { Name = "Jane Doe", Birthday = new DateTime(1988, 10, 6) });
json = JsonConvert.SerializeObject(people, Formatting.Indented);
public string Name { get; set; }
public DateTime? Birthday { get; set; }