एक सूची घोषित करें और तत्व जोड़ें।
List<int> list = new List<int>(); list.Add(50); list.Add(90); list.Add(50); list.Add(100);
अब, केवल विशिष्ट तत्व प्राप्त करने के लिए Distinct() विधि का उपयोग करें।
List<int> myList = list.Distinct().ToList();
सूची से डुप्लिकेट तत्वों को हटाने के लिए पूरा कोड निम्नलिखित है -
उदाहरण
using System; using System.Collections.Generic; using System.Linq; public class Demo { public static void Main() { List < int > list = new List < int > (); list.Add(50); list.Add(90); list.Add(50); list.Add(100); Console.WriteLine("Initial List..."); foreach(int a in list) { Console.WriteLine("{0}", a); } List < int > myList = list.Distinct().ToList(); Console.WriteLine("New List after removing duplicate elements..."); foreach(int a in myList) { Console.WriteLine("{0}", a); } } }
आउटपुट
Initial List... 50 90 50 100 New List after removing duplicate elements... 50 90 100