|
Name
|
Description
|
|
Aggregate
|
(Overloaded) Applies an accumulator function over a sequence. (Defined by Enumerable).
|
|
All
|
Determines whether all elements of a sequence satisfy a condition. (Defined by Enumerable).
|
|
Ancestors
|
(Overloaded) (Defined by Extensions).
|
|
AncestorsAndSelf
|
(Overloaded) (Defined by Extensions).
|
|
Any
|
(Overloaded) Determines whether a sequence contains any elements. (Defined by Enumerable).
|
|
AsEnumerable
|
Returns the input typed as IEnumerable<T>. (Defined by Enumerable).
|
|
AsJEnumerable
|
(Overloaded) (Defined by Extensions).
|
|
AsParallel
|
(Overloaded) Enables parallelization of a query. (Defined by ParallelEnumerable).
|
|
AsQueryable
|
(Overloaded) Converts a generic IEnumerable<T> to a generic IQueryable<T>. (Defined by Queryable).
|
|
Attributes
|
(Overloaded) (Defined by Extensions).
|
|
Average
|
(Overloaded) Computes the average of a sequence of Int32 values. (Defined by Enumerable).
|
|
Cast
|
Casts the elements of an IEnumerable to the specified type. (Defined by Enumerable).
|
|
Children
|
(Overloaded) (Defined by Extensions).
|
|
Concat
|
Concatenates two sequences. (Defined by Enumerable).
|
|
Contains
|
(Overloaded) Determines whether a sequence contains a specified element by using the default equality comparer. (Defined by Enumerable).
|
|
Count
|
(Overloaded) Returns the number of elements in a sequence. (Defined by Enumerable).
|
|
DefaultIfEmpty
|
(Overloaded) Returns the elements of the specified sequence or the type parameter's default value in a singleton collection if the sequence is empty. (Defined by Enumerable).
|
|
DescendantNodes
|
(Defined by Extensions).
|
|
DescendantNodesAndSelf
|
(Defined by Extensions).
|
|
Descendants
|
(Overloaded) (Defined by Extensions).
|
|
DescendantsAndSelf
|
(Overloaded) (Defined by Extensions).
|
|
Distinct
|
(Overloaded) Returns distinct elements from a sequence by using the default equality comparer to compare values. (Defined by Enumerable).
|
|
ElementAt
|
Returns the element at a specified index in a sequence. (Defined by Enumerable).
|
|
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).
|
|
Elements
|
(Overloaded) (Defined by Extensions).
|
|
Except
|
(Overloaded) Produces the set difference of two sequences by using the default equality comparer to compare values. (Defined by Enumerable).
|
|
First
|
(Overloaded) Returns the first element of a sequence. (Defined by Enumerable).
|
|
FirstOrDefault
|
(Overloaded) Returns the first element of a sequence, or a default value if the sequence contains no elements. (Defined by Enumerable).
|
|
GroupBy
|
(Overloaded) Groups the elements of a sequence according to a specified key selector function. (Defined by Enumerable).
|
|
GroupJoin
|
(Overloaded) Correlates the elements of two sequences based on equality of keys and groups the results. The default equality comparer is used to compare keys. (Defined by Enumerable).
|
|
InDocumentOrder
|
(Defined by Extensions).
|
|
Intersect
|
(Overloaded) Produces the set intersection of two sequences by using the default equality comparer to compare values. (Defined by Enumerable).
|
|
Join
|
(Overloaded) Correlates the elements of two sequences based on matching keys. The default equality comparer is used to compare keys. (Defined by Enumerable).
|
|
Last
|
(Overloaded) Returns the last element of a sequence. (Defined by Enumerable).
|
|
LastOrDefault
|
(Overloaded) Returns the last element of a sequence, or a default value if the sequence contains no elements. (Defined by Enumerable).
|
|
LongCount
|
(Overloaded) Returns an Int64 that represents the total number of elements in a sequence. (Defined by Enumerable).
|
|
Max
|
(Overloaded) Returns the maximum value in a sequence of Int32 values. (Defined by Enumerable).
|
|
Min
|
(Overloaded) Returns the minimum value in a sequence of Int32 values. (Defined by Enumerable).
|
|
Nodes
|
(Defined by Extensions).
|
|
OfType
|
Filters the elements of an IEnumerable based on a specified type. (Defined by Enumerable).
|
|
OrderBy
|
(Overloaded) Sorts the elements of a sequence in ascending order according to a key. (Defined by Enumerable).
|
|
OrderByDescending
|
(Overloaded) Sorts the elements of a sequence in descending order according to a key. (Defined by Enumerable).
|
|
Properties
|
(Defined by Extensions).
|
|
Remove
|
(Overloaded) (Defined by Extensions).
|
|
Reverse
|
Inverts the order of the elements in a sequence. (Defined by Enumerable).
|
|
Select
|
(Overloaded) Projects each element of a sequence into a new form. (Defined by Enumerable).
|
|
SelectMany
|
(Overloaded) Projects each element of a sequence to an IEnumerable<T> and flattens the resulting sequences into one sequence. (Defined by Enumerable).
|
|
SequenceEqual
|
(Overloaded) Determines whether two sequences are equal by comparing the elements by using the default equality comparer for their type. (Defined by Enumerable).
|
|
Single
|
(Overloaded) Returns the only element of a sequence, and throws an exception if there is not exactly one element in the sequence. (Defined by Enumerable).
|
|
SingleOrDefault
|
(Overloaded) Returns the only element of a sequence, or a default value if the sequence is empty; this method throws an exception if there is more than one element in the sequence. (Defined by Enumerable).
|
|
Skip
|
Bypasses a specified number of elements in a sequence and then returns the remaining elements. (Defined by Enumerable).
|
|
SkipWhile
|
(Overloaded) Bypasses elements in a sequence as long as a specified condition is true and then returns the remaining elements. (Defined by Enumerable).
|
|
Sum
|
(Overloaded) Computes the sum of a sequence of Int32 values. (Defined by Enumerable).
|
|
Take
|
Returns a specified number of contiguous elements from the start of a sequence. (Defined by Enumerable).
|
|
TakeWhile
|
(Overloaded) Returns elements from a sequence as long as a specified condition is true. (Defined by Enumerable).
|
|
ToArray
|
Creates an array from a IEnumerable<T>. (Defined by Enumerable).
|
|
ToDictionary
|
(Overloaded) Creates a Dictionary<TKey, TValue> from an IEnumerable<T> according to a specified key selector function. (Defined by Enumerable).
|
|
ToList
|
Creates a List<T> from an IEnumerable<T>. (Defined by Enumerable).
|
|
ToLookup
|
(Overloaded) Creates a Lookup<TKey, TElement> from an IEnumerable<T> according to a specified key selector function. (Defined by Enumerable).
|
|
Union
|
(Overloaded) Produces the set union of two sequences by using the default equality comparer. (Defined by Enumerable).
|
|
Value
|
(Overloaded) (Defined by Extensions).
|
|
Values
|
(Overloaded) (Defined by Extensions).
|
|
Where
|
(Overloaded) Filters a sequence of values based on a predicate. (Defined by Enumerable).
|
|
Zip
|
Merges two sequences by using the specified predicate function. (Defined by Enumerable).
|