স্বতন্ত্র উপাদান পেতে, Distinct() পদ্ধতি ব্যবহার করুন।
নিচের নকল উপাদান সহ আমাদের তালিকা।
List<int> points = new List<int> { 5, 10, 5, 20, 30, 30, 40, 50, 60, 70 };
এখন স্বতন্ত্র উপাদান পেতে -
points.AsQueryable().Distinct();
আসুন পুরো উদাহরণটি দেখি -
উদাহরণ
using System; using System.Linq; using System.Collections.Generic; class Demo { static void Main() { List<int> points = new List<int> { 5, 10, 5, 20, 30, 30, 40, 50, 60, 70 }; // distict elements from the list IEnumerable<int> res = points.AsQueryable().Distinct(); foreach (int a in res) { Console.WriteLine(a); } } }
আউটপুট
5 10 20 30 40 50 60 70