{
\"jsonstring\": [
{
\"id\":\"01\",
\"language\": \"Java\",
\"edition\": \"third\",
\"author\": \"Herbert Schildt\"
},
{
\"id\":
Use NewtonSoft.NET:
var obj = JsonConvert.DeserializeObject(json);
Maybe make a corresponding class for using generics too:
public class ClassName {
public string id { get; set; }
public string language { get; set; }
public string edition { get; set; }
public string author { get; set; }
}
then you can do:
List list = JsonConvert.DeserializeObject>(json);