在C#中,可以使用LINQ(Language-Integrated Query)語句來篩選集合中的元素。其中,可以使用Where方法來篩選集合中滿足特定條件的元素。
下面是一個示例,演示如何在復雜條件下使用Where方法來篩選集合:
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, 6, 7, 8, 9, 10 };
var filteredNumbers = numbers.Where(x => x % 2 == 0 && x > 5);
foreach (var num in filteredNumbers)
{
Console.WriteLine(num);
}
}
}
在上面的示例中,我們創建了一個整數類型的集合numbers
,然后使用Where方法來篩選出在集合中同時滿足x % 2 == 0
和x > 5
條件的元素。最后,我們通過foreach循環遍歷篩選后的集合,并輸出符合條件的元素。
在實際應用中,可以根據具體的需求編寫復雜的條件表達式來篩選集合中的元素。