码迷,mamicode.com
首页 > 其他好文 > 详细

List 集合的交集

时间:2017-02-28 10:41:46      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:case   empty   交集   message   lis   each   test   ignore   enum   

private void Test()
{
List<string> lsA = new List<string>();
lsA.Add("A");
lsA.Add("B");
lsA.Add("C");
lsA.Add("D");

List<string> lsB = new List<string>();
lsB.Add("C");
lsB.Add("D");
lsB.Add("E");
lsB.Add("F");


List<string> lsC = new List<string>();
lsC.Add("D");
lsC.Add("G");
lsC.Add("H");

IEnumerable<string> lstNew = null;
lstNew = lsA.Intersect(lsB, StringComparer.OrdinalIgnoreCase);

lstNew = lstNew.Intersect(lsC, StringComparer.OrdinalIgnoreCase);
//也可以连着写,如下
// lstNew = lsA.Intersect(lsB, StringComparer.OrdinalIgnoreCase).Intersect(lsC, StringComparer.OrdinalIgnoreCase);


//下面这种方式也可以
// IEnumerable<string> lsIntersect = Enumerable.Intersect(lsA, lsB);


string str = string.Empty;
if (lstNew != null && lstNew.Count<string>() > 0)
{
foreach (string c in lstNew)
{
str += c;
}
}
MessageBox.Show(str);
}

List 集合的交集

标签:case   empty   交集   message   lis   each   test   ignore   enum   

原文地址:http://www.cnblogs.com/zhangxw1992/p/6477713.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!