Desserializar uma matriz JSON em c #

Eu estou preso com um problema complicado.

Eu tenho uma string JSON deste formato:

[{
  "record":
          {
             "Name": "Komal",
             "Age": 24,
             "Location": "Siliguri"
          }
 },
 {
  "record":
          {
             "Name": "Koena",
             "Age": 27,
             "Location": "Barasat"
          }
 },
 {
  "record":
          {
             "Name": "Kanan",
             "Age": 35,
             "Location": "Uttarpara"
          }
 }
... ...
]

Campos em "registro" podem aumentar ou diminuir.

Então, eu fiz aulas assim:

public class Person
{
    public string Name;
    public string Age;
}

public class PersonList
{
    public Person record;
}

E tentando desserializar assim:

JavaScriptSerializer ser = new JavaScriptSerializer();

var r = ser.Deserialize<PersonList>(jsonData);

Eu estou fazendo algo errado. Mas incapaz de encontrar. Você pode por favor ajudar.

Desde já, obrigado.

Atualizar:

Na verdade, eu estava recebendo o erro "Invalid JSON Primitive:". devido a eu estava recebendo a string lendo um arquivo com este código:

public static bool ReadFromFile(string path, string fileName, out string readContent)
{
   bool status = true;

   byte[] readBuffer = null;
   try
   {
      // Combine the new file name with the path
      string filePath = System.IO.Path.Combine(path, fileName);
      readBuffer = System.IO.File.ReadAllBytes(filePath);
   }
   catch (Exception ex)
   {
       status = false;
   }

   readContent = (null != readBuffer) ? Utilities.GetString(readBuffer) : string.Empty;

   return status;
}

Agora estou lendo o arquivo com isto:

using (StreamReader r = new StreamReader("E:\\Work\\Data.json"))
{
   string json = r.ReadToEnd();
   result = JsonConvert.DeserializeObject<List<PersonList>>(json);
}

Está funcionando bem.

questionAnswers(3)

yourAnswerToTheQuestion