写这个源于这个网友的题问:http://topic.csdn.net/u/20110803/16/031363d0-831d-4795-8c29-458d1271cc83.html?48229
ID Name
1 张三
1 李三
1 小伟
1 李三
2 李四
2 李武
------------------------------------------------------------------------------------------------------------
解决这个问题,方法很多,最开始想到的就Enumerable.Distinct方法
我们可能经常用的是Distinct<TSource>(IEnumerable<TSource>)
这里要用Distinct<TSource>(IEnumerable<TSource>, IEqualityComparer<TSource>) 使用指定的 IEqualityComparer<T> 对值进行比较
http://www.dtan.so
public class User { public User(int id, string name) { Id = id; Name = name; } public int Id { get; set; } public string Name { get; set; } }
public class UserComparer : IEqualityComparer<User> { #region IEqualityComparer<User> 成员 public bool Equals(User x, User y) { if (x.Id == y.Id && x.Name == y.Name) return true; else return false; } public int GetHashCode(User obj) { return 0; } #endregion }
public class MainClass { public static void Main() { List<User> list = new List<User>(); list.Add(new User(1, "张三")); list.Add(new User(1, "李三")); list.Add(new User(1, "小伟")); list.Add(new User(1, "李三")); list.Add(new User(2, "李四")); list.Add(new User(2, "李武")); var query = list.Distinct(new UserComparer()); foreach (var item in query) { Console.WriteLine(item.Id + "," + item.Name); } Console.ReadLine(); //输出结果: // 1 , 张三 // 1 , 李三 // 1 , 小伟 // 2 , 李四 // 2 , 李武 } }