これはばかげた質問のように思えるかもしれませんが、msdnのドキュメントを確認し、このサイトをしばらく検索しようとしました。残念ながら、その方法を本当に理解することができませんでした。
2番目または3番目の子の後にノードを挿入したいと思います。私のXMLのメインコンテンツは孫の中にあり、root.insertafterを使用すると、最初の子の直後に配置されます。
XML:
<myCourse>
<courseName>BEng Mobile and Web Computing</courseName>
<courseStructure>
<module>
<moduleTitle>Programming Methodology</moduleTitle>
<credits>15</credits>
<semester>1</semester>
</module>
<module>
<moduleTitle>Computer Systems Fundamentals</moduleTitle>
<credits>15</credits>
<semester>1</semester>
</module>
</courseStructure>
</myCourse>
そしてコード:
private void buttonCreateNode_Click(object sender, EventArgs e)
{
// Load the XML document.
XmlDocument document = new XmlDocument();
document.Load(@"temp.xml");
// Get the root element.
XmlElement root = document.DocumentElement;
// Create the new nodes.
XmlElement newModule = document.CreateElement("module");
XmlElement newTitle = document.CreateElement("moduleTitle");
XmlElement newCredits = document.CreateElement("credits");
XmlElement newSemester = document.CreateElement("semester");
XmlText title = document.CreateTextNode("ECA411");
XmlText credits = document.CreateTextNode("15");
XmlText semester = document.CreateTextNode("1");
// Insert the elements.
newBook.AppendChild(newTitle);
newBook.AppendChild(newCredits);
newBook.AppendChild(newSemester);
newTitle.AppendChild(title);
newCredits.AppendChild(credits);
newSemester.AppendChild(semester);
root.InsertAfter(newModule, root.LastChild);
document.Save(@"temp.xml");
どんな助けでも大歓迎です。