एक से अधिक सूची बनाएं -
// two lists
var list1 = new List<int>{3, 4};
var list2 = new List<int>{1, 2, 3}; अब, सामान्य मान प्राप्त करने के लिए Intersect() विधि का उपयोग करें -
var res = list1.Intersect(list2);
निम्नलिखित पूरा कोड है -
उदाहरण
using System.Collections.Generic;
using System.Linq;
using System;
public class Demo {
public static void Main() {
// two lists
var list1 = new List<int>{3, 4};
var list2 = new List<int>{1, 2, 3};
// common values
var res = list1.Intersect(list2);
foreach(int i in res) {
Console.WriteLine(i);
}
}
} आउटपुट
3