I\'m getting some very weird behaviour in my Xamarin.Forms Project.
I\'m retrieving some serialized data from a REST API. I\'m then trying to use Json.NET to deseri
Thanks a lot to all the responses so far! Sadly none of them worked for me.
After a lot of trial and error I found that I am able to access my data like so:
var blub = JsonConvert.DeserializeObject(booksString);
foreach (var element in (JArray)blub)
{
var blublub = ((JObject)element).SelectToken("$.Title").ToString();
}
But it would be an absolute pain if I had to implement my whole API this way... Are there any other ideas from you guys?