DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Take Function Using LINQ
Dim numbersList() = {5, 4, 1, 3}
Dim takeThree= numbersList.Take(3)
For Each n In takeThree
Console.WriteLine(n)
Next





