Как получить значение из JSON объекта
как получить значение электронной почты из приведенного ниже объекта json в c#
{ "data": { "type": "get-company-clients-response", "attributes": { "clients": [ { "accountId": "53784", "nameOfPerson": { "preNominalLetters": null, "initials": null, "firstName": "bob", "middleName": null, "lastName": "gebruiker", "postNominalLetters": null }, "email": "test@test.com", "profilePhoto": { "guid": null, "profilePhotoUrl": "http://www.gravatar.com", "useOwnProfilePhoto": false }, "clientType": 0 }, { "accountId": "56308", "nameOfPerson": { "preNominalLetters": null, "initials": null, "firstName": "test", "middleName": null, "lastName": "test", "postNominalLetters": null }, "email": "test@test.com", "profilePhoto": { "guid": null, "profilePhotoUrl": "http://www.gravatar.com", "useOwnProfilePhoto": false }, "clientType": 0 } ] } } }
Что я уже пробовал:
JObject results = JObject.Parse(companyClients); foreach (var result in results["data"]) { companyClients.Add((string)result["attributes"]); }
Richard MacCutchan
В чем же вопрос?