I'm doing a webrequest where I get the result in a Json. Now in the Json there are strings like:
"displayName": "Simon#27756"
Now i want to get the "value" which is in this case: Simon#27756 This is how i get the Json:
var response = client.GetAsync("webrequest link").Result;
var content = response.Content.ReadAsStringAsync().Result;
dynamic item = JsonConvert.DeserializeObject(content);
Thanks for your answers! Have a good day!