Mega Code Archive

 
Categories / VB.Net / XML LINQ
 

Is Xml standalone

Imports System Imports System.Reflection Imports System.Xml Module Module1     Sub Main()         Dim xml As XDocument = XDocument.Load("Hello_XLINQ.xml")         Console.WriteLine("Standalone: {0}", xml.Declaration.Standalone)     End Sub         End Module