有没有一种快速的方法可以从扩展中创建的List<TElement>
扁平化ILookup<TKey, TElement>
?IEnumerable<TElement>
更新了示例
List<int> list = new List<int>();
var lookup = list.ToLookup(key => key);
list = lookup.?? // How to convert the lookup back to the list
lookup.SelectMany( x => x ).ToList()
然而,来回转换ILookup
很可能会改变顺序。
不确定这是否是您所追求的。为了Dictionary<>
_List<>
List<TElement> list iLookUp.Values.ToList<TElement>();
从List<>
到Dictionary<>
var dict = list.Cast<TElement>().ToDictionary(t => t.Id, t => t.Description);