如何将 Dictionary<XElement,XElement> 转换为 xml 文件?

Posted

技术标签:

【中文标题】如何将 Dictionary<XElement,XElement> 转换为 xml 文件?【英文标题】:How to convert Dictionary<XElement,XElement> into xml file? 【发布时间】:2021-05-07 16:39:41 【问题描述】:

字典

Dictionary<XElement, XElement> _XParents = new Dictionary<XElement, XElement>();

我的字典看起来像:

key:<node>, value:<parentNode>

我想将此字典转换为 XML 文件

XML 应如下所示:

<parentNode>
    <node/>
</parentNode>

【问题讨论】:

【参考方案1】:

尝试以下:

            XElement root = new XElement("Root");

            foreach (XElement _XParent in _XParents.Keys)
            
                root.Add(_XParent);
            

你的字典键应该是一个字符串,所以代码应该是这样的

            Dictionary<string, XElement> _XParents = new Dictionary<string, XElement>();

            XElement root = new XElement("Root");

            foreach (string _XParent in _XParents.Keys)
            
                root.Add(new XElement(_XParent, _XParents[_XParent]));
            

【讨论】:

我无法更改必须使用字典的字典数据类型 这行不通。每个 XElement 的键都不同,并将包括所有子元素。要获取密钥的字符串,您可以使用 LocalName.Name。

以上是关于如何将 Dictionary<XElement,XElement> 转换为 xml 文件?的主要内容,如果未能解决你的问题,请参考以下文章

如何将 Dictionary<XElement,XElement> 转换为 xml 文件?

如何将对象转换为Dictionary 在C#?

如何将 Dictionary<enum, bool> 双向绑定到 WPF 中的 ListView 列?

如何将 Dictionary<string, string> 变量从后面的代码传递到 asp.net?

如何将 NSDictionary 转换为 Dictionary?

如何将 Dictionary<string,string> 添加到现有 JSON.Net 的 JObject?