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
Skip Function Using LINQ
Dim numbersList() = {5, 4, 1, 3}
Dim skippedList= From n In numbersList Skip(2)
For Each n In skippedList
Console.WriteLine(n)
Next




