Public Module Module1
Public Sub Main()
Dim lsExample As New System.Collections.Generic.List(Of String)
lsExample.Add("Something")
lsExample.Add("Something Else")
Dim arrExample = lsExample.ToArray
For Each index in arrExample
System.Console.WriteLine(index.ToString)
Next
End Sub
End Module