JavaScriptSerializer s = new 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?
That shouldn’t happen but try single quotes?
Or this: