using System.Collections.Generic;
public static void Main()
'Email': 'james@example.com',
'CreatedDate': '2013-01-20T00:00:00Z',
'Email': 'james@example.com2',
'CreatedDate': '2013-01-20T00:00:00Z',
List<Account> account = new List<Account>();
account.AddRange(JsonConvert.DeserializeObject<List<Account>>(json2));
Console.Write(account[0].Email);
public string Email { get; set; }
public bool Active { get; set; }
public DateTime CreatedDate { get; set; }
public IList<string> Roles { get; set; }