我有一个定义如下的字典:
Dictionary<string, int> Controls = new Dictionary<string, int>();
使用以下代码,我将具有相似值的键放入 var
var result = (from p in Controls
group p by p.Value into g
where g.Count() > 1
select g);
但是我既不能再次将“结果”转换为字典,也不能访问“结果”中的项目
我试过这段代码但是
foreach (System.Linq.Lookup<int, KeyValuePair<string, int>> Item in result)
{
}
请帮忙。