Imports System.Collections.Generic
Dim people as List(Of String) = New List(Of String) ({"Albert", "Alfred","Rudholf", "Cyntia"})
dim result as IEnumerable(Of String) = people.Where(function(p) p.Contains("Al"))
For Each person as string in result
Console.WriteLine(person)