Mega Code Archive
Creates an XmlDeclaration node with the specified values
Option Explicit
Option Strict
Imports System
Imports System.IO
Imports System.Xml
Public Class Sample
Public Shared Sub Main()
Dim doc As New XmlDocument()
doc.LoadXml("" & _
"C#" & _
"")
Dim xmldecl As XmlDeclaration
xmldecl = doc.CreateXmlDeclaration("1.0", Nothing, Nothing)
Dim root As XmlElement = doc.DocumentElement
doc.InsertBefore(xmldecl, root)
doc.Save(Console.Out)
End Sub
End Class