C#程序从两个或更多列表中查找公用值
创建多个列表-
//两个列表
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
热门推荐
10 圣诞祝福语简短小学
11 祖国七十华诞简短祝福语
12 老师送的祝福语简短
13 生日祝福语大全女生简短
14 祝女性生日祝福语简短
15 牛年女神节祝福语简短
16 情人表白祝福语简短大气
17 老公开业祝福语简短
18 官宣新年祝福语简短