Deserializar una matriz JSON en C #

Estoy atrapado con un problema difícil.

Tengo una cadena JSON de este formato:

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

Los campos en "registro" pueden aumentar o disminuir.

Entonces, he hecho clases como esta:

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

public class PersonList
{
    public Person record;
}

Y tratando de deserializar así:

JavaScriptSerializer ser = new JavaScriptSerializer();

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

Estoy haciendo algo mal. Pero incapaz de encontrar. ¿Puedes por favor ayudar?

Gracias por adelantado.

Actualizar:

En realidad, estaba recibiendo el error "JSON Primitive no válido:." Debido a que estaba obteniendo la cadena leyendo un archivo con 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;
}

Ahora estoy leyendo el archivo con esto:

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

Está funcionando bien.

Respuestas a la pregunta(3)

Su respuesta a la pregunta