Use Linq Distinct to get the distinct value in an array in CSharp

Description

The following code shows how to use Linq Distinct to get the distinct value in an array.

Example


   /*from w w  w .j  a  va 2 s .c om*/
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Linq;

public class MainClass
{
    public static void Main(){
            int[] numbers = {1, 1, 2, 3, 3};
            var nums = numbers.Distinct();
            foreach(var n in nums){
               Console.Write(n);
            }
            
   }
}

The code above generates the following result.





















Home »
  C# Tutorial »
    LINQ »




Operator
Select
Where
OrderBy
Group
Join
Let
LINQ