Mega Code Archive

 
Categories / VB.Net / XML LINQ
 

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