{
\"jsonstring\": [
{
\"id\":\"01\",
\"language\": \"Java\",
\"edition\": \"third\",
\"author\": \"Herbert Schildt\"
},
{
\"id\":
In .NET you can use JavaScriptSerializer. First you will need to create a class that has the same structure as the json string.
Example:
{
"Id":"07",
"Language": "C++"
}
public class CSharpObject
{
int Id {get; set;}
string Language {get; set;}
}
string json = HttpUtility.HtmlDecode(jsonString);
JavaScriptSerializer json_serializer = new JavaScriptSerializer();
CSharpObject csharpObject = (CSharpObject)json_serializer.Deserialize(json);