|
| Name | Description |
|---|
.gif) .gif) .gif) .gif) | Aggregate | Overloaded. Applies an accumulator function over a sequence. |
.gif) .gif) .gif) .gif) | All<(Of <(TSource>)>) | Determines whether all elements of a sequence satisfy a condition. |
.gif) .gif) .gif) .gif) | Any | Overloaded. Determines whether any element of a sequence exists or satisfies a condition. |
.gif) .gif) .gif) .gif) | AsEnumerable<(Of <(TSource>)>) | Returns the input typed as IEnumerable<(Of <(T>)>). |
.gif) .gif) .gif) .gif) | Average | Overloaded. Computes the average of a sequence of numeric values. |
.gif) .gif) .gif) .gif) | Cast<(Of <(TResult>)>) | Converts the elements of an IEnumerable to the specified type. |
.gif) .gif) .gif) .gif) | Concat<(Of <(TSource>)>) | Concatenates two sequences. |
.gif) .gif) .gif) .gif) | Contains | Overloaded. Determines whether a sequence contains a specified element. |
.gif) .gif) .gif) .gif) | Count | Overloaded. Returns the number of elements in a sequence. |
.gif) .gif) .gif) .gif) | DefaultIfEmpty | Overloaded. Returns the elements of an IEnumerable<(Of <(T>)>), or a default valued singleton collection if the sequence is empty. |
.gif) .gif) .gif) .gif) | Distinct | Overloaded. Returns distinct elements from a sequence. |
.gif) .gif) .gif) .gif) | ElementAt<(Of <(TSource>)>) | Returns the element at a specified index in a sequence. |
.gif) .gif) .gif) .gif) | ElementAtOrDefault<(Of <(TSource>)>) | Returns the element at a specified index in a sequence or a default value if the index is out of range. |
.gif) .gif) .gif) .gif) | Empty<(Of <(TResult>)>) | Returns an empty IEnumerable<(Of <(T>)>) that has the specified type argument. |
.gif) .gif) .gif) .gif) | Except | Overloaded. Produces the set difference of two sequences. |
.gif) .gif) .gif) .gif) | First | Overloaded. Returns the first element of a sequence. |
.gif) .gif) .gif) .gif) | FirstOrDefault | Overloaded. Returns the first element of a sequence, or a default value if no element is found. |
.gif) .gif) .gif) .gif) | GroupBy | Overloaded. Groups the elements of a sequence. |
.gif) .gif) .gif) .gif) | GroupJoin | Overloaded. Correlates the elements of two sequences based on key equality, and groups the results. |
.gif) .gif) .gif) .gif) | Intersect | Overloaded. Produces the set intersection of two sequences. |
.gif) .gif) .gif) .gif) | Join | Overloaded. Correlates the elements of two sequences based on matching keys. |
.gif) .gif) .gif) .gif) | Last | Overloaded. Returns the last element of a sequence. |
.gif) .gif) .gif) .gif) | LastOrDefault | Overloaded. Returns the last element of a sequence, or a default value if no element is found. |
.gif) .gif) .gif) .gif) | LongCount | Overloaded. Returns an Int64 that represents the number of elements in a sequence. |
.gif) .gif) .gif) .gif) | Max | Overloaded. Returns the maximum value in a sequence of values. |
.gif) .gif) .gif) .gif) | Min | Overloaded. Returns the minimum value in a sequence of values. |
.gif) .gif) .gif) .gif) | OfType<(Of <(TResult>)>) | Filters the elements of an IEnumerable based on a specified type. |
.gif) .gif) .gif) .gif) | OrderBy | Overloaded. Sorts the elements of a sequence in ascending order. |
.gif) .gif) .gif) .gif) | OrderByDescending | Overloaded. Sorts the elements of a sequence in descending order. |
.gif) .gif) .gif) .gif) | Range | Generates a sequence of integral numbers within a specified range. |
.gif) .gif) .gif) .gif) | Repeat<(Of <(TResult>)>) | Generates a sequence that contains one repeated value. |
.gif) .gif) .gif) .gif) | Reverse<(Of <(TSource>)>) | Inverts the order of the elements in a sequence. |
.gif) .gif) .gif) .gif) | Select | Overloaded. Projects each element of a sequence into a new form. |
.gif) .gif) .gif) .gif) | SelectMany | Overloaded. Projects each element of a sequence to an IEnumerable<(Of <(T>)>) and flattens the resulting sequences into one sequence. |
.gif) .gif) .gif) .gif) | SequenceEqual | Overloaded. Determines whether two sequences are equal according to an equality comparer. |
.gif) .gif) .gif) .gif) | Single | Overloaded. Returns a single, specific element of a sequence of values. |
.gif) .gif) .gif) .gif) | SingleOrDefault | Overloaded. Returns a single, specific element of a sequence of values, or a default value if no such element is found. |
.gif) .gif) .gif) .gif) | Skip<(Of <(TSource>)>) | Bypasses a specified number of elements in a sequence and then returns the remaining elements. |
.gif) .gif) .gif) .gif) | SkipWhile | Overloaded. Bypasses elements in a sequence as long as a specified condition is true and then returns the remaining elements. |
.gif) .gif) .gif) .gif) | Sum | Overloaded. Computes the sum of a sequence of numeric values. |
.gif) .gif) .gif) .gif) | Take<(Of <(TSource>)>) | Returns a specified number of contiguous elements from the start of a sequence. |
.gif) .gif) .gif) .gif) | TakeWhile | Overloaded. Returns elements from a sequence as long as a specified condition is true, and then skips the remaining elements. |
.gif) .gif) .gif) .gif) | ThenBy | Overloaded. Performs a subsequent ordering of the elements in a sequence in ascending order. |
.gif) .gif) .gif) .gif) | ThenByDescending | Overloaded. Performs a subsequent ordering of the elements in a sequence in descending order. |
.gif) .gif) .gif) .gif) | ToArray<(Of <(TSource>)>) | Creates an array from a IEnumerable<(Of <(T>)>). |
.gif) .gif) .gif) .gif) | ToDictionary | Overloaded. Creates a Dictionary<(Of <(TKey, TValue>)>) from an IEnumerable<(Of <(T>)>). |
.gif) .gif) .gif) .gif) | ToList<(Of <(TSource>)>) | Creates a List<(Of <(T>)>) from an IEnumerable<(Of <(T>)>). |
.gif) .gif) .gif) .gif) | ToLookup | Overloaded. Creates a generic Lookup<(Of <(TKey, TElement>)>) from an IEnumerable<(Of <(T>)>). |
.gif) .gif) .gif) .gif) | Union | Overloaded. Produces the set union of two sequences. |
.gif) .gif) .gif) .gif) | Where | Overloaded. Filters a sequence of values based on a predicate. |