i get a JsonResult object in my ASP.NET MVC project, its Data property is a json string like this:
"{\"Name\":\"Paul\", \"Age\":\"23\"}";
how can i get the key/value pairs about this string in c#? i mean i can get the value via each key. thanks in advance!