围观》》》》c# xml
我的代码如下:(没实现我想要的效果)
XDocument xd = new XDocument(
new XElement("ChargeInfo",
new XElement("Material")
)
);
XElement mat = xd.Element("ChargeInfo");
mat.Add(new XElement("cpucode", "123"),
new XElement("brandcode", "123"));
这样不能实现让cpucode和brandcode两项在materia节点下,请求高手赐教。。。
------解决方案--------------------
XElement mat = xd.Element("ChargeInfo").Element("Material");