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
Count Sample Using LINQ
// count sample using LINQ
Public Sub CountSum()
Dim cntTotal() = {2, 2, 3, 5, 5}
Console.WriteLine("Total =" & cntTotal.Distinct().Count())
End Sub





