How could you convert a string of JSON to a C# NameValueCollection
simply, preferably without using a 3rd party parser?
EDIT
Pure .net solution without third party development have look : JavaScriptSerializer – Dictionary to JSON Serialization and Deserialization
make use of Json.NET
string jsonstring = @"{""keyabc"":""valueabc"",""keyxyz"":""valuexyz""}";
Dictionary values =
JsonConvert.DeserializeObject>(jsonstring);
Check @jon answer suggest same : .Net Linq to JSON with Newtonsoft JSON library