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
Order By Using LINQ
Dim unsortedList() = {"One", "Two", "Three"}
Dim sortedList = From w In unsortedList Order By w
For Each w In sortedList
Console.WriteLine(w)





