添加去除转义符号
HttpResponseMessage str = new HttpResponseMessage { Content = new StringContent(str, Encoding.GetEncoding("UTF-8"), "application/json") };
var json = new JsonSerializer().Deserialize(new JsonTextReader(new StringReader(ReturnJson)))
System.Text.RegularExpressions.Regex.Unescape(s)
System.Text.RegularExpressions.Regex.Escape(s)