Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

C # Linq Distinct () วิธีการ


เพื่อให้ได้องค์ประกอบที่แตกต่างกัน ให้ใช้วิธีการ 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