Imports System.Linq
Imports System.Xml.Linq
Module Module1
Sub Main()
' Create test by using a global XML namespace prefix.
Dim contact =
605 111 605
508 234 234
058 345 322
Console.WriteLine(contact)
Dim x() As Integer = {1, 2, 4, 5}
Dim n As XElement = _
<%= From i In x Select <%= i %> %>
Console.WriteLine(n)
Console.ReadKey()
End Sub
End Module