using System.Collections.Generic;
public static void Main()
""lastname"": ""Edwards""
""firstname"": ""Sandra"",
""firstname"": ""David"",
""lastname"": ""Johnson""
using (JsonTextReader reader = new JsonTextReader(new StringReader(json)))
reader.SupportMultipleContent = true;
var serializer = new JsonSerializer();
List<Contact> contacts = serializer.Deserialize<List<Contact>>(reader);
foreach (Contact c in contacts)
Console.WriteLine(c.FirstName + " " + c.LastName);
public string FirstName { get; set; }
public string LastName { get; set; }