|
| Name | Description |
|---|
.gif) | Aggregate | Applies an accumulator function over a sequence. (Defined by Enumerable.) |
.gif) | All | Determines whether all elements of a sequence satisfy a condition. (Defined by Enumerable.) |
.gif) | Ancestors | Overloaded. Returns a collection of elements that contains the ancestors of every node in the source collection. |
.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 | Converts the elements of an IEnumerable to the specified type. (Defined by Enumerable.) |
.gif) | Concat | Concatenates two sequences. (Defined by Enumerable.) |
.gif) | Contains | Overloaded. Determines whether a sequence contains a specified element. |
.gif) | CopyToDataTable | Overloaded. Returns a DataTable that contains copies of the DataRow objects, given an input IEnumerable<(Of <(T>)>) object. |
.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) | DescendantNodes | Returns a collection of the descendant nodes of every document and element in the source collection. (Defined by Extensions.) |
.gif) | Descendants | Overloaded. Returns a collection of elements that contains the descendant elements of every element and document in the source collection. |
.gif) | Distinct | Overloaded. Returns distinct elements from a sequence. |
.gif) | ElementAt | Returns the element at a specified index in a sequence. (Defined by Enumerable.) |
.gif) | ElementAtOrDefault | Returns the element at a specified index in a sequence or a default value if the index is out of range. (Defined by Enumerable.) |
.gif) | Elements | Overloaded. Returns a collection of the child elements of every element and document in the source collection. |
.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) | InDocumentOrder | Returns a collection of nodes that contains all nodes in the source collection, sorted in document order. (Defined by Extensions.) |
.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) | Nodes | Returns a collection of the child nodes of every document and element in the source collection. (Defined by Extensions.) |
.gif) | OfType | Filters the elements of an IEnumerable based on a specified type. (Defined by Enumerable.) |
.gif) | Remove | Removes every node in the source collection from its parent node. (Defined by Extensions.) |
.gif) | Reverse | Inverts the order of the elements in a sequence. (Defined by Enumerable.) |
.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 | Bypasses a specified number of elements in a sequence and then returns the remaining elements. (Defined by Enumerable.) |
.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 | Returns a specified number of contiguous elements from the start of a sequence. (Defined by Enumerable.) |
.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. |