摘要:
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之间
阅读(183)
评论(0)
推荐(0)
摘要:
static implicit operator 阅读全文
posted @ 2020-07-21 10:03
行走在0和1之间
阅读(109)
评论(0)
推荐(0)