Microsoft .NET Compact Framework Kick Start
Creating XmlElement s
To create an XmlElement , the XmlDocument provides the CreateElement methods. The methods create an XmlElement node with the specified name and an optional namespace. This code illustrates how to create an element:
C# XmlElement newElement = xmlDoc.CreateElement("Book"); VB Dim newElement As xmlDoc.CreateElement("Book") |