I've worked a lot with Android but today I have to work with Xamarin.
I'm making a PCL class and I'm trying to create a JSON object from a string (HttpWebResponse converted into a string) for calling from an Android wrapper.
After some research I wasn't able to find anything which really answers my question.
Ultimately I want be able to just call something like this:
string value = jsonObject.get("key").getAsString();
I get a string from http response and then I want to convert it into a JSON object. When the JSON object is created, I want to extract a value like in the example. However, I'm making it in a PCL, so is it possible to do this in Xamarin/C# from a PCL?
Thank for the help and reading!