发布时间:2021-05-19编辑:佚名阅读(1890)
//查找出列表中的所有重复元素 private static List<string> QueryRepeatElementOfList(List<string> list) { List<string> listTmp = new List<string>(); if (list!=null && list.Count>0) { listTmp = list.GroupBy(x => x) .Where(g => g.Count() > 1) .Select(y => y.Key) .ToList(); } return listTmp; } //查找出列表中的所有重复元素及其重复次数 private static Dictionary<string, int> QueryRepeatElementAndCountOfList(List<string> list) { Dictionary<string,int> DicTmp = new Dictionary<string, int>(); if (list != null && list.Count > 0) { DicTmp = list.GroupBy(x => x) .Where(g => g.Count() > 1) .ToDictionary(x => x.Key, y => y.Count()); } return DicTmp; }
上一篇:SQLite函数大全
下一篇:Eclipse改成中文版
1人
0人
1人
0人