C#验证集合是否存在相同值
程序员文章站
2022-06-10 20:49:39
...
//验证是否有相同描述
bool HaveDuplicates = RemarkAll(集合名称).GroupBy(j => j).Where(g => g.Count() > 1).Count() >= 1;
上一篇: 多线程、进程锁机制的作用