14

有没有一种快速的方法可以从扩展中创建的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
4

2 回答 2

29
lookup.SelectMany( x => x ).ToList()

然而,来回转换ILookup很可能会改变顺序。

于 2010-03-04T16:21:00.723 回答
0

不确定这是否是您所追求的。为了Dictionary<>_List<>

List<TElement> list iLookUp.Values.ToList<TElement>();

List<>Dictionary<>

var dict = list.Cast<TElement>().ToDictionary(t => t.Id, t => t.Description);
于 2010-02-24T03:04:28.613 回答