Mega Code Archive
Load the Employees xml and store the contents into an XElement object
Imports System
Imports System.Xml.Linq
Public Class MainClass
Public Shared Sub Main()
Dim employees As XElement = XElement.Load("Employees.xml")
End Sub
End Class