Enumerable.Where 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
조건자를 기반으로 값 시퀀스를 필터링합니다.
오버로드
| Name | Description |
|---|---|
| Where<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) |
조건자를 기반으로 값 시퀀스를 필터링합니다. |
| Where<TSource>(IEnumerable<TSource>, Func<TSource,Int32,Boolean>) |
조건자를 기반으로 값 시퀀스를 필터링합니다. 각 요소의 인덱스는 조건자 함수의 논리에 사용됩니다. |
Where<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>)
- Source:
- Where.cs
- Source:
- Where.cs
- Source:
- Where.cs
- Source:
- Where.cs
- Source:
- Where.cs
조건자를 기반으로 값 시퀀스를 필터링합니다.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IEnumerable<TSource> ^ Where(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, bool> ^ predicate);
public static System.Collections.Generic.IEnumerable<TSource> Where<TSource>(this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,bool> predicate);
static member Where : seq<'Source> * Func<'Source, bool> -> seq<'Source>
<Extension()>
Public Function Where(Of TSource) (source As IEnumerable(Of TSource), predicate As Func(Of TSource, Boolean)) As IEnumerable(Of TSource)
형식 매개 변수
- TSource
의 요소 형식입니다 source.
매개 변수
- source
- IEnumerable<TSource>
IEnumerable<T> 필터링할 항목입니다.
반품
IEnumerable<T> 조건을 충족하는 입력 시퀀스의 요소가 들어 있는 값입니다.
예외
source 또는 predicate .입니다 null.
예제
다음 코드 예제에서는 시퀀스를 필터링하는 데 사용하는 Where<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) 방법을 보여 줍니다.
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
*/
' Create a list of strings.
Dim fruits As New List(Of String)(New String() _
{"apple", "passionfruit", "banana", "mango",
"orange", "blueberry", "grape", "strawberry"})
' Restrict the results to those strings whose
' length is less than six.
Dim query As IEnumerable(Of String) =
fruits.Where(Function(fruit) fruit.Length < 6)
' Display the results.
Dim output As New System.Text.StringBuilder
For Each fruit As String In query
output.AppendLine(fruit)
Next
Console.WriteLine(output.ToString())
' This code produces the following output:
'
' apple
' mango
' grape
설명
이 메서드는 지연된 실행을 사용하여 구현됩니다. 즉시 반환 값은 작업을 수행하는 데 필요한 모든 정보를 저장하는 개체입니다. 이 메서드가 나타내는 쿼리는 해당 GetEnumerator 메서드를 직접 호출하거나 C#의 foreach 또는 Visual Basic For Each 사용하여 개체가 열거될 때까지 실행되지 않습니다.
쿼리 식 구문에서 where(C#) 또는 Where(Visual Basic) 절은 Where<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) 호출로 변환됩니다.
추가 정보
적용 대상
Where<TSource>(IEnumerable<TSource>, Func<TSource,Int32,Boolean>)
- Source:
- Where.cs
- Source:
- Where.cs
- Source:
- Where.cs
- Source:
- Where.cs
- Source:
- Where.cs
조건자를 기반으로 값 시퀀스를 필터링합니다. 각 요소의 인덱스는 조건자 함수의 논리에 사용됩니다.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IEnumerable<TSource> ^ Where(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, int, bool> ^ predicate);
public static System.Collections.Generic.IEnumerable<TSource> Where<TSource>(this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,int,bool> predicate);
static member Where : seq<'Source> * Func<'Source, int, bool> -> seq<'Source>
<Extension()>
Public Function Where(Of TSource) (source As IEnumerable(Of TSource), predicate As Func(Of TSource, Integer, Boolean)) As IEnumerable(Of TSource)
형식 매개 변수
- TSource
의 요소 형식입니다 source.
매개 변수
- source
- IEnumerable<TSource>
IEnumerable<T> 필터링할 항목입니다.
조건에 대한 각 소스 요소를 테스트하는 함수입니다. 함수의 두 번째 매개 변수는 소스 요소의 인덱스를 나타냅니다.
반품
IEnumerable<T> 조건을 충족하는 입력 시퀀스의 요소가 들어 있는 값입니다.
예외
source 또는 predicate .입니다 null.
예제
다음 코드 예제에서는 각 요소의 인덱스를 포함하는 조건자를 기반으로 시퀀스를 필터링하는 데 사용하는 Where<TSource>(IEnumerable<TSource>, Func<TSource,Int32,Boolean>) 방법을 보여 줍니다.
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
*/
' Create an array of integers.
Dim numbers() As Integer = {0, 30, 20, 15, 90, 85, 40, 75}
' Restrict the results to those numbers whose
' values are less than or equal to their index times 10.
Dim query As IEnumerable(Of Integer) =
numbers.Where(Function(number, index) number <= index * 10)
' Display the results.
Dim output As New System.Text.StringBuilder
For Each number As Integer In query
output.AppendLine(number)
Next
Console.WriteLine(output.ToString())
' This code produces the following output:
'
' 0
' 20
' 15
' 40
설명
이 메서드는 지연된 실행을 사용하여 구현됩니다. 즉시 반환 값은 작업을 수행하는 데 필요한 모든 정보를 저장하는 개체입니다. 이 메서드가 나타내는 쿼리는 해당 GetEnumerator 메서드를 직접 호출하거나 C#의 foreach 또는 Visual Basic For Each 사용하여 개체가 열거될 때까지 실행되지 않습니다.
첫 번째 인수 predicate 는 테스트할 요소를 나타냅니다. 두 번째 인수는 내 요소의 인덱스(0부터 시작하는 인덱스) source를 나타냅니다.