标签: c# xml
在我的XML文档中,我想添加两个字符串作为属性
XElement myele = new XElement("Custom_value"); myele.Add(new XAttribute("name", type)); myele.Add(new XAttribute("value", value));
如何将这两个属性添加到EXISTING Custom字段中。