Using Aggregating Count to get the number of unique factors of 300 : Count « LINQ « VB.Net






Using Aggregating Count to get the number of unique factors of 300

  

Imports System.IO
Imports System.Reflection
Imports System.Linq
Imports System.Xml.Linq

Public Class MainClass
   Public Shared Sub Main

        Dim f = New Integer() {2, 2, 3, 5, 5}

        Dim uniqueFactors = f .Distinct().Count()

        Console.WriteLine("There are " & uniqueFactors & " unique factors of 300.")

   End Sub


End Class

   
    
  








Related examples in the same category

1.Get count from the query
2.Get the count of all employees hired this year.
3.Using Count to return a list of employeeList and how many orders each has
4.Using Count to return a list of categories and how many projectList each has
5.Aggregating Count with Conditional