Use Linq Distinct to get the distinct value in an array : Distinct « LINQ « C# / C Sharp






Use Linq Distinct to get the distinct value in an array

 
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};
            Console.Write(numbers.Distinct());
   }
}

 








Related examples in the same category

1.Set Operators: Distinct
2.prints the unique Category names
3.Distinct Operator
4.Get Distinct departments