Intersect
Intersect将同时存在于两个序列中的元素挑选出来,组成一个新的序列。代码如下:
static void Main()
{
int[] id1 = { 44, 26, 92, 30, 71, 38 };
int[] id2 = { 39, 59, 83, 47, 26, 4, 30 };
//Intersect用法
IEnumerable<int> both = id1.Intersect(id2);
foreach (int id in both)
Console.WriteLine(id);
}
运行结果为:
26
30