C# 中的取交集方法
使用 Intesect 方法获取公共元素 −
创建列表 −
var list1 = new List{99, 87}; var list2 = new List{56, 87, 45, 99};
现在,使用 Intersect() 方法从上述列表中获取公共元素 −
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>{99, 87}; var list2 = new List<int>{56, 87, 45, 99}; // common values var res = list1.Intersect(list2); foreach(int i in res) { Console.WriteLine(i); } } }
输出
99 87
广告