Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试找到一种使用 json.net 将对象序列化为 json 的方法。我试图序列化的对象有一个 XElement 属性,我想保持原样。
有没有办法在 json.net 中做到这一点?或者在 json 对象中传输 xml 数据的机制是什么?
你可以这样做
//convert XML node contained in string xml into a JSON string XmlDocument var = new XmlDocument(); var.LoadXml(xml); string jsonsting = JsonConvert.SerializeXmlNode(var);
请参阅此链接以获取更多帮助