|
| Name | Description |
|---|
.gif) | Aggregate | Overloaded. Applies an accumulator function over a sequence. |
.gif) | All | Overloaded. |
.gif) | Any | Overloaded. Determines whether any element of a sequence exists or satisfies a condition. |
.gif) | AsEnumerable | Returns the input typed as IEnumerable<(Of <(T>)>). (Defined by Enumerable.) |
.gif) | AsQueryable | Overloaded.
Converts an IEnumerable or generic IEnumerable<(Of <(T>)>) to an IQueryable or generic IQueryable<(Of <(T>)>).
|
.gif) | Average | Overloaded. Computes the average of a sequence of numeric values. |
.gif) | Cast | Overloaded. |
.gif) | Concat | Overloaded. |
.gif) | Contains | Overloaded. Determines whether a sequence contains a specified element. |
.gif) | Count | Overloaded. Returns the number of elements in a sequence. |
.gif) | DefaultIfEmpty | Overloaded. Returns the elements of an IEnumerable<(Of <(T>)>), or a default valued singleton collection if the sequence is empty. |
.gif) | Distinct | Overloaded. Returns distinct elements from a sequence. |
.gif) | ElementAt | Overloaded. |
.gif) | ElementAtOrDefault | Overloaded. |
.gif) | Except | Overloaded. Produces the set difference of two sequences. |
.gif) | First | Overloaded. Returns the first element of a sequence. |
.gif) | FirstOrDefault | Overloaded. Returns the first element of a sequence, or a default value if no element is found. |
.gif) | Intersect | Overloaded. Produces the set intersection of two sequences. |
.gif) | Last | Overloaded. Returns the last element of a sequence. |
.gif) | LastOrDefault | Overloaded. Returns the last element of a sequence, or a default value if no element is found. |
.gif) | LongCount | Overloaded. Returns an Int64 that represents the number of elements in a sequence. |
.gif) | Max | Overloaded. Returns the maximum value in a sequence of values. |
.gif) | Min | Overloaded. Returns the minimum value in a sequence of values. |
.gif) | OfType | Overloaded. |
.gif) | Reverse | Overloaded. |
.gif) | SequenceEqual | Overloaded. Determines whether two sequences are equal according to an equality comparer. |
.gif) | Single | Overloaded. Returns a single, specific element of a sequence of values. |
.gif) | SingleOrDefault | Overloaded. Returns a single, specific element of a sequence of values, or a default value if no such element is found. |
.gif) | Skip | Overloaded. |
.gif) | SkipWhile | Overloaded. Bypasses elements in a sequence as long as a specified condition is true and then returns the remaining elements. |
.gif) | Sum | Overloaded. Computes the sum of a sequence of numeric values. |
.gif) | Take | Overloaded. |
.gif) | TakeWhile | Overloaded. Returns elements from a sequence as long as a specified condition is true, and then skips the remaining elements. |
.gif) | ToArray | Creates an array from a IEnumerable<(Of <(T>)>). (Defined by Enumerable.) |
.gif) | ToList | Creates a List<(Of <(T>)>) from an IEnumerable<(Of <(T>)>). (Defined by Enumerable.) |
.gif) | Union | Overloaded. Produces the set union of two sequences. |
.gif) | Where | Overloaded. Filters a sequence of values based on a predicate. |