System.Web.Script.Serialization.JavaScriptSerializer s = new System.Web.Script.Serialization.JavaScriptSerializer();
result = s.Deserialize<Hashtable>(data);
Error is thrown if data is "{a:\"\"test\" 123\",b:\"hello\" }" No error is thrown if data is "{a:\"test 123\",b:\"hello\" }" How do I adjust the data string so that no error is thrown even when there are quotes?