0
我有一個簡單的SelectMany你如何索引字段添加到LINQ結果的SelectMany
List<string> animal = new List<string>() { "cat", "dog", "donkey" };
List<int> number = new List<int>() { 10, 20 };
var result = number.SelectMany((num, index) => animal, (n, a) => index + n + a);
// expected result: 0cat10, 1dog10, 2donkey10, 3cat20, 4dog20, 5donkey20
我想添加一個索引,但我無法找出正確的語法
不錯的一個。我想沒有辦法將它全部放入SelectMany中? – fubo
@fubo GreenEyedAndy提出了單SelectMany的方法 –
@fubo我增加了單個'SelectMany'的解決方案,但它看起來不錯 –