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 found As Boolean = numbers.Any(Function(n) n >= 10)
Console.WriteLine(found)
End Sub
End Class