在C#.net中使用xmldocument添加根元素

时间:2010-06-18 13:27:06

标签: c# xmldocument

我需要在C#中使用xmldocument对象创建一个XML文件。

如何添加如下的根元素:

 book:aaaa xsi:schemalocationchemaLocation="http://www.com"

1 个答案:

答案 0 :(得分:15)

XmlDocument doc = new XmlDocument();
XmlElement elem = doc.CreateElement("book", "aaaa", "http://www.com");
doc.AppendChild(elem);