【C#】Json转换Xml真的有那么麻烦吗?用两句话真正搞定Json转Xml

            XmlDictionaryReader reader = JsonReaderWriterFactory.CreateJsonReader(Encoding.UTF8.GetBytes(xml), XmlDictionaryReaderQuotas.Max);
            XmlDocument xdoc 
= new XmlDocument();
            xdoc.Load(reader);
原文地址:https://www.cnblogs.com/Aimeast/p/1937038.html