有点繁琐,但你可以这样做:
IEnumerable<Tuple<Foo,int>> result =
tree.SelectMany(
(L1,i) => L1.SelectMany(
L2 => L2.Select(
k => Tuple.Create(k,i)
)
)
);
一个可编译的版本是:
using System;
using System.Collections.Generic;
using System.Linq;
class Foo
{
public string s;
public Foo(string s)
{
this.s = s;
}
}
class Program
{
static void Main(string[] args)
{
var tree = new List<List<List<Foo>>>
{
new List<List<Foo>>
{
new List<Foo> { new Foo("a"), new Foo("b") },
new List<Foo> { new Foo("c") }
},
new List<List<Foo>>
{
new List<Foo> { new Foo("x"), new Foo("y") }
}
};
IEnumerable<Tuple<Foo,int>> result = tree.SelectMany((L1,i) => L1.SelectMany(L2 => L2.Select(k => Tuple.Create(k,i))));
foreach(var si in result)
{
Console.WriteLine(si.Item1.s + ' ' + si.Item2);
}
}
}
编辑:正如@sll 指出的那样,由于使用了 .NET 4,因此该解决方案需要 .NET 4 Tuple
。如果有必要的话,适应也不会太难。