I am trying to parse the following complex JSON result, which is returned from the Zoho Crm API:
{ \"response\": { \"result\": { \"Contacts\":
you can use this code: dynamic dictionary = (JsonConvert.DeserializeObject>(jsonstring))["response"]; var result = dictionary.result; var contact= result.Contacts; var row= contact.row; foreach (var item in row) { var no= item.no; }