I have the next json.
{Estudiante:
{nombre:'paco',
edad: 20,
sexo: 'm'},
Recibos:
[{folio:'A1213',
fecha:'10-02-2017',
total: 56},
{folio:'A1213',
fecha:'10-02-2017',
total: 56}]
}
To convert student I use the following:
JObject jObject = JObject.Parse(json);
JToken objeto = jObject["Estudiante"];
string nombre = (string) objeto["nombre"];
But I do not know how to perform this process with Receipts. Thanks.