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

C # Linq Intersect Method


ค้นหาองค์ประกอบทั่วไประหว่างสองอาร์เรย์โดยใช้วิธี Intersect()

ต่อไปนี้เป็นอาร์เรย์ของเรา -

int[] val1 = { 15, 20, 40, 60, 75, 90 };
int[] val2 = { 17, 25, 35, 55, 75, 90 };

เพื่อทำสี่แยก

val1.AsQueryable().Intersect(val2);

เรามาดูตัวอย่างทั้งหมดกันเถอะ

ตัวอย่าง

using System;
using System.Collections.Generic;
using System.Linq;
class Demo {
   static void Main() {
      int[] val1 = { 15, 20, 40, 60, 75, 90 };
      int[] val2 = { 17, 25, 35, 55, 75, 90 };
      IEnumerable<int> res = val1.AsQueryable().Intersect(val2);
      Console.WriteLine("Intersection of both the lists...");
      foreach (int a in res)
      Console.WriteLine(a);
   }
}

ผลลัพธ์

Intersection of both the lists...
75
90