I generate a JSON string in PHP and catch it with httpWebRequest in a .NET windows form application
All works well but I want to use the json.net library to cast that string back to an object (or array).
JsonSerializer serializer = new JsonSerializer();
object result = JsonConvert.DeserializeObject(responseFromServer);
How can i use that object to get the variables from the JSON string?
I've been working this out all day and couldn't find a way to get all values from the JSON string in C#
All help appreciated