C#在EXISTING元素中添加XML属性

时间:2014-11-24 10:35:07

标签: c# xml

在我的XML文档中,我想添加两个字符串作为属性

        XElement myele = new XElement("Custom_value");
        myele.Add(new XAttribute("name", type));
        myele.Add(new XAttribute("value", value));

如何将这两个属性添加到EXISTING Custom字段中。

0 个答案:

没有答案