Creates an XmlNode with the specified node type, Name, and NamespaceURI.
Imports System
Imports System.Xml
public class Sample
public shared sub Main()
Dim doc as XmlDocument = new XmlDocument()
doc.LoadXml("<book>" & _
" <title>C#</title>" & _
" <price>5.95</price>" & _
"</book>")
Dim newElem as XmlNode = doc.CreateNode("element", "pages", "")
newElem.InnerText = "1"
Dim root as XmlElement = doc.DocumentElement
root.AppendChild(newElem)
Console.WriteLine(doc.OuterXml)
end sub
end class
Related examples in the same category