Mega Code Archive
Creates an XmlNode with the specified XmlNodeType, Name, and NamespaceURI
Option Explicit
Option Strict
Imports System
Imports System.IO
Imports System.Xml
Public Class Sample
Public Shared Sub Main()
'Create the XmlDocument.
Dim doc As New XmlDocument()
doc.LoadXml("" & _
"C#" & _
"")
Dim elem As XmlNode = doc.CreateNode(XmlNodeType.Element, "price", Nothing)
elem.InnerText = "9.9"
doc.DocumentElement.AppendChild(elem)
doc.Save(Console.Out)
End Sub 'Main
End Class 'Sample