在C#中,SelectMany
是一個LINQ擴展方法,用于將多個集合或可迭代對象連接成一個單一的序列。要實現關聯,你可以使用 SelectMany
將多個集合或可迭代對象連接起來,并在需要的地方進行關聯操作。
以下是一個簡單的示例,說明如何使用 SelectMany
實現關聯:
using System;
using System.Collections.Generic;
using System.Linq;
class Program
{
static void Main()
{
// 創建兩個列表
List<int> numbers = new List<int> { 1, 2, 3, 4, 5 };
List<char> letters = new List<char> { 'a', 'b', 'c', 'd', 'e' };
// 使用 SelectMany 將兩個列表關聯在一起
var combined = numbers.SelectMany(number => letters.Where(letter => letter >= number));
// 輸出結果
foreach (var item in combined)
{
Console.WriteLine(item);
}
}
}
在這個示例中,我們創建了兩個列表:一個包含整數,另一個包含字符。然后,我們使用 SelectMany
將這兩個列表關聯在一起,條件是字符的ASCII值大于或等于整數的值。最后,我們遍歷并輸出結果。
如果你需要在關聯時進行更復雜的操作,可以在 SelectMany
的 lambda 表達式中添加相應的邏輯。