标签:serial str json ali data nbsp new convert res
--xml转json
XmlDocument doc = new XmlDocument();
doc.LoadXml(result);
string json = Newtonsoft.Json.JsonConvert.SerializeXmlNode(doc);
--json 转xml
XmlDocument XmlData = JsonConvert.DeserializeXmlNode(result);
标签:serial str json ali data nbsp new convert res
原文地址:https://www.cnblogs.com/yachao1120/p/9102601.html