Method Name |
Description |
More Information |
Select |
Projects values that are based on a transform function. |
|
SelectMany |
Projects sequences of values that are based on a transform function and then flattens them into one sequence. |
Select
SelectMany
Operator Name |
Description |
More Information |
Skip |
Skips elements up to a specified position in a sequence. |
|
SkipWhile |
Skips elements based on a predicate function until an element does not satisfy the condition. |
|
Take |
Takes elements up to a specified position in a sequence. |
|
TakeWhile |
Takes elements based on a predicate function until an element does not satisfy the condition. |