I need to deserialize a json array:
{"response":
[19,
{"mid":1068,
"date":1343848664,
"out":1,
"uid":44852633,
"read_state":1,
"title":" ... ",
"body":"А я вовсю."},
{"mid":1007,
"date":1328782448,
"out":1,
"uid":16098752,
"read_state":0,
"title":" ... ",
"body":"http:\/\/theantidj.net\/wp-content\/themes\/theantidjnet\/images\/khubvio.php"}
and so on. I’m using json.net. Can I perform deserealization using JsonConvert.DeserializeObject()? And if so what classes should I create?
Just another solution.