Enumerable.Where 方法

定義

根據述詞來篩選值序列。

多載

Where<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>)

根據述詞來篩選值序列。

Where<TSource>(IEnumerable<TSource>, Func<TSource,Int32,Boolean>)

根據述詞來篩選值序列。 述詞函式的邏輯中使用各項目的索引。

Where<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>)

來源:
Where.cs
來源:
Where.cs
來源:
Where.cs

根據述詞來篩選值序列。

C#
public static System.Collections.Generic.IEnumerable<TSource> Where<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,bool> predicate);

類型參數

TSource

source 項目的類型。

參數

source
IEnumerable<TSource>

要篩選的 IEnumerable<T>

predicate
Func<TSource,Boolean>

用來測試每個項目是否符合條件的函式。

傳回

IEnumerable<TSource>

IEnumerable<T>,其中包含輸入序列中符合條件的項目。

例外狀況

sourcepredicatenull

範例

下列程式代碼範例示範如何使用 Where<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) 來篩選序列。

C#
List<string> fruits =
    new List<string> { "apple", "passionfruit", "banana", "mango",
                    "orange", "blueberry", "grape", "strawberry" };

IEnumerable<string> query = fruits.Where(fruit => fruit.Length < 6);

foreach (string fruit in query)
{
    Console.WriteLine(fruit);
}
/*
 This code produces the following output:

 apple
 mango
 grape
*/

備註

這個方法是使用延後執行來實作。 立即傳回值是一個物件,會儲存執行動作所需的所有資訊。 除非直接呼叫其 GetEnumerator 方法或在 C# 或 foreachFor Each Visual Basic 中使用 來列舉對象,否則不會執行這個方法所代表的查詢。

在查詢表達式語法中, where (C#) 或 Where (Visual Basic) 子句會轉譯為 的 Where<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>)調用。

另請參閱

適用於

.NET 9 和其他版本
產品 版本
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0

Where<TSource>(IEnumerable<TSource>, Func<TSource,Int32,Boolean>)

來源:
Where.cs
來源:
Where.cs
來源:
Where.cs

根據述詞來篩選值序列。 述詞函式的邏輯中使用各項目的索引。

C#
public static System.Collections.Generic.IEnumerable<TSource> Where<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,int,bool> predicate);

類型參數

TSource

source 項目的類型。

參數

source
IEnumerable<TSource>

要篩選的 IEnumerable<T>

predicate
Func<TSource,Int32,Boolean>

用來測試各來源項目是否符合條件的函式;此函式的第二個參數代表來源項目的索引。

傳回

IEnumerable<TSource>

IEnumerable<T>,其中包含輸入序列中符合條件的項目。

例外狀況

sourcepredicatenull

範例

下列程式代碼範例示範如何使用 Where<TSource>(IEnumerable<TSource>, Func<TSource,Int32,Boolean>) 根據涉及每個元素索引的述詞來篩選序列。

C#
int[] numbers = { 0, 30, 20, 15, 90, 85, 40, 75 };

IEnumerable<int> query =
    numbers.Where((number, index) => number <= index * 10);

foreach (int number in query)
{
    Console.WriteLine(number);
}
/*
 This code produces the following output:

 0
 20
 15
 40
*/

備註

這個方法是使用延後執行來實作。 立即傳回值是一個物件,會儲存執行動作所需的所有資訊。 除非直接呼叫其 GetEnumerator 方法或在 C# 或 foreachFor Each Visual Basic 中使用 來列舉對象,否則不會執行這個方法所代表的查詢。

的第一個自變數 predicate 代表要測試的專案。 第二個自變數代表 內 source專案之以零起始的索引。

適用於

.NET 9 和其他版本
產品 版本
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0