|
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).
|
|
Any
|
(Overloaded)
Determines whether a sequence contains any elements.
(Defined by Enumerable).
|
|
AsEnumerable
|
Returns the input typed as IEnumerable<T>.
(Defined by Enumerable).
|
|
AsQueryable
|
(Overloaded)
Converts a generic IEnumerable<T> to a generic IQueryable<T>.
(Defined by Queryable).
|
|
Average
|
(Overloaded)
Computes the average of a sequence of Int32 values.
(Defined by Enumerable).
|
|
Cast
|
Converts the elements of an IEnumerable to the specified type.
(Defined by Enumerable).
|
|
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).
|
|
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).
|
|
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).
|
|
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).
|
|
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).
|
|
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).
|
|
Where
|
(Overloaded)
Filters a sequence of values based on a predicate.
(Defined by Enumerable).
|