如何在循环中动态添加XElements?

时间:2013-09-10 07:28:53

标签: c# xml dictionary linq-to-xml xelement

我得到了一个包含所有子XElements的HybridDictionary 我不知道前面有多少物品 所以不要这样做:

xmlDoc.Element("Parent").Add(
     new XElement("Child", new XAttribute("Name", "Child1"),
           new XElement("Id", "796"),
           new XElement("Name", "gdsa")
           etc..
      ));  

我正在尝试做类似的事情:

Strung [] allKeys = new String[ChildElements.Count];
TheHybridDictionary.Keys.CopyTo(allKeys, 0);

xmlDoc.Element("Parent").Add(
      new XElement("Child", new XAttribute("Name", "Child1"),
            for (int i = 0; i < TheHybridDictionary.Count; i++)
                   new XElement(allKeys[i], TheHybridDictionary[allKeys[i]])

但是如何连接for循环中的任何内容才能成为XML文档构造的一部分?

2 个答案:

答案 0 :(得分:1)

您可以像在Stefan的评论中一样使用.Add()方法,或者使用LINQ:

xmlDoc.Element("Parent").Add(
  new XElement("Child", new XAttribute("Name", "Child1"),
        TheHybridDictionary.Select(kvp => new XElement(kvp.Key, kvp.Value)));

答案 1 :(得分:1)

问题是,你的HybridDictionary类没有实现IEnumerable,所以你不能直接在它上面使用LINQ。

但您可以改为使用allKeys字符串数组:

string [] allKeys = new String[ChildElements.Count];
TheHybridDictionary.Keys.CopyTo(allKeys, 0);

xmlDoc.Element("Parent").Add(
    new XElement("Child", new XAttribute("Name", "Child1"),
        allKeys.Select(x => new XElement(x, TheHybridDictionary[x])))