在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
http://www.cnblogs.com/qinpengming/archive/2012/12/03/2800202.html 借用 这个兄弟的代码 我就不献丑了 。我这里指记录下 public bool Equals(int x, int y) public int GetHashCode(int obj) Union() 这个方法将会Union(并集)两个序列(集合)连接成一个新列表(集合) 方法定义是: public static IEnumerable<TSource> Union<TSource>(this IEnumerable<TSource> first, IEnumerable<TSource> second) Intersect () 它将产生两个序列的交集. 方法定义是: public static IEnumerable<TSource> Intersect<TSource>(this IEnumerable<TSource> first, IEnumerable<TSource> second) public static IEnumerable<TSource> Intersect<TSource>(this IEnumerable<TSource> first, Enumerable<TSource> second,IEqualityComparer<TSource> comparer) Except () 它是从一个集合中删除存在另一个集合中的项.两个序列产生的集合差. 英文意思是:除此之外 方法定义是: public static IEnumerable<TSource> Except<TSource>(this IEnumerable<TSource> first, IEnumerable<TSource> second) 实例代码分别如下: 想看代码 http://www.cnblogs.com/qinpengming/archive/2012/12/03/2800202.html |
请发表评论