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

LINQ获取两个List的交集

时间:2017-04-29 19:55:44      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:arp   ted   ble   exce   string   new   article   str   equal   

1.调用:

UserList = UserList.ToList().Intersect(userIDList, new MyUserComparer()).AsQueryable();

2.须要重写的方法:

public class MyUserComparer : IEqualityComparer<MyUser>
    {
        public bool Equals(MyUser x, MyUser y)
        {
            //throw new NotImplementedException();
            return x.UserID == y.UserID;
        }
        public int GetHashCode(MyUser obj)
        {
            return obj.ToString().GetHashCode();
        }
    }


LINQ获取两个List的交集

标签:arp   ted   ble   exce   string   new   article   str   equal   

原文地址:http://www.cnblogs.com/zhchoutai/p/6785784.html

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