Dictionary<string, object> user = (Dictionary<string, object>)serializer.DeserializeObject(responsecontent);
the response is not parse in this code. any other way to parse json in c#
|
I am assuming you are not using JSON.NET. If this the case, then you can try it. It has the following features -
Look at the example below. In this example,
|
|||||||
|
|
If .NET 4 is available to you, check out: http://visitmix.com/writings/the-rise-of-json Here is a snippet from that site:
That last Console.WriteLine is pretty sweet... |
|||||||||||||||
|
|
You could also have a look at the DataContractJsonSerializer |
|||
|
|
serializeris an instance of JavaScriptSerializer? – Kirk Woll Jul 8 '11 at 5:05