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

linq in not in

时间:2016-01-05 20:27:09      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:

class A
{
public int B { get; set; }
public string C { get; set; }
}
class Program
{
static void Main(string[] args)
{
List<A> list = new List<A>() {
new A(){ B=1,C="1"},
new A(){B=2,C="2"},
new A(){B=3,C="3"},
new A(){B=4,C="4"},
};
List<A> listT = new List<A>()
{
new A(){B=1,C="1"},
new A(){B=2,C="2"}
};

var aa = list.FindAll(c => !listT.Any(it => it.B == c.B)).ToList();
var bb = list.FindAll(c => listT.Any(it => it.B == c.B)).ToList();

//Files();
Console.Read();

}

linq in not in

标签:

原文地址:http://www.cnblogs.com/hank-chen/p/5103354.html

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