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# " & _
"" & _
" ")
If doc.DocumentElement.LastChild.FirstChild.IsReadOnly Then
Console.WriteLine("Entity reference nodes are always read-only")
End If
End Sub 'Main
End Class 'Sample