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