判断list重复扩展方法

public static bool AreAnyDuplicates<T>(this IEnumerable<T> list)
{
    var hashset = new HashSet<T>();
    return list.Any(e => !hashset.Add(e));
}
posted @ 2020-07-21 17:20  行走在0和1之间  阅读(175)  评论(0编辑  收藏  举报