सबसे पहले दो सूचियां बनाएं -
List list1 = new List() {40, 20, 60, 3, 55}; List list2 = new List() {20, 70, 55, 80};
सामान्य तत्वों को खोजने के लिए, इंटरसेक्ट का उपयोग करें -
list1.Intersect(list2)
दो सूचियों के बीच सामान्य तत्वों को खोजने के लिए पूरा कोड निम्नलिखित है -
उदाहरण
using System; using System.Linq; using System.Collections.Generic; namespace Demo { class Program { static void Main(string[] args) { List list1 = new List() {40, 20, 60, 3, 55}; List list2 = new List() {20, 70, 55, 80}; Console.WriteLine("Common elements:"); foreach(int value in list1.Intersect(list2)) Console.WriteLine(value); } } }
आउटपुट
Common elements: 20 55