Imports System
Imports System.Linq
Imports System.Collections.Generic
Imports System.Collections
Imports System.Collections.Specialized
Public Class MainClass
Public Shared Sub Main()
Dim numbers As List(Of Integer) = New List(Of Integer)(New Integer() {1, 2, 3, 4, 5, 6, 7, 8, 9})
Dim firstEven As Integer = numbers.First(Function(n) n Mod 2 = 0)
Console.WriteLine(firstEven)
End Sub
End Class