创建多个列表-
//两个列表 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() { //两个列表 var list1 = new List<int>{3, 4}; var list2 = new List<int>{1, 2, 3}; //共同值观 var res = list1.Intersect(list2); foreach(int i in res) { Console.WriteLine(i); } } }
输出结果
3