Data Structure VB.Net

Imports System
Imports System.Collections.Generic
Class Program
    Shared Sub Main()
        Dim names As New List(Of String)
        names.Add("A")
        names.Add("B")
        names.Add("C")
        names.Add("D")
        names.ForEach(AddressOf Print)
    End Sub
    Shared Sub Print(ByVal s As String)
        Console.WriteLine(s)
    End Sub
End Class