.NET Framework Class Library
Enumerable Members

Provides a set of static (Shared in Visual Basic) methods for querying objects that implement IEnumerable<(Of <(T>)>).

The Enumerable type exposes the following members.

Methods

  NameDescription
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkAggregateOverloaded. Applies an accumulator function over a sequence.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkAll<(Of <(TSource>)>)Determines whether all elements of a sequence satisfy a condition.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkAnyOverloaded. Determines whether any element of a sequence exists or satisfies a condition.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkAsEnumerable<(Of <(TSource>)>)Returns the input typed as IEnumerable<(Of <(T>)>).
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkAverageOverloaded. Computes the average of a sequence of numeric values.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkCast<(Of <(TResult>)>)Converts the elements of an IEnumerable to the specified type.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkConcat<(Of <(TSource>)>)Concatenates two sequences.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkContainsOverloaded. Determines whether a sequence contains a specified element.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkCountOverloaded. Returns the number of elements in a sequence.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkDefaultIfEmptyOverloaded. Returns the elements of an IEnumerable<(Of <(T>)>), or a default valued singleton collection if the sequence is empty.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkDistinctOverloaded. Returns distinct elements from a sequence.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkElementAt<(Of <(TSource>)>)Returns the element at a specified index in a sequence.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkElementAtOrDefault<(Of <(TSource>)>)Returns the element at a specified index in a sequence or a default value if the index is out of range.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkEmpty<(Of <(TResult>)>)Returns an empty IEnumerable<(Of <(T>)>) that has the specified type argument.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkExceptOverloaded. Produces the set difference of two sequences.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkFirstOverloaded. Returns the first element of a sequence.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkFirstOrDefaultOverloaded. Returns the first element of a sequence, or a default value if no element is found.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkGroupByOverloaded. Groups the elements of a sequence.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkGroupJoinOverloaded. Correlates the elements of two sequences based on key equality, and groups the results.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkIntersectOverloaded. Produces the set intersection of two sequences.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkJoinOverloaded. Correlates the elements of two sequences based on matching keys.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkLastOverloaded. Returns the last element of a sequence.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkLastOrDefaultOverloaded. Returns the last element of a sequence, or a default value if no element is found.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkLongCountOverloaded. Returns an Int64 that represents the number of elements in a sequence.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkMaxOverloaded. Returns the maximum value in a sequence of values.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkMinOverloaded. Returns the minimum value in a sequence of values.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkOfType<(Of <(TResult>)>)Filters the elements of an IEnumerable based on a specified type.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkOrderByOverloaded. Sorts the elements of a sequence in ascending order.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkOrderByDescendingOverloaded. Sorts the elements of a sequence in descending order.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkRangeGenerates a sequence of integral numbers within a specified range.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkRepeat<(Of <(TResult>)>)Generates a sequence that contains one repeated value.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkReverse<(Of <(TSource>)>)Inverts the order of the elements in a sequence.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkSelectOverloaded. Projects each element of a sequence into a new form.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkSelectManyOverloaded. Projects each element of a sequence to an IEnumerable<(Of <(T>)>) and flattens the resulting sequences into one sequence.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkSequenceEqualOverloaded. Determines whether two sequences are equal according to an equality comparer.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkSingleOverloaded. Returns a single, specific element of a sequence of values.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkSingleOrDefaultOverloaded. Returns a single, specific element of a sequence of values, or a default value if no such element is found.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkSkip<(Of <(TSource>)>)Bypasses a specified number of elements in a sequence and then returns the remaining elements.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkSkipWhileOverloaded. Bypasses elements in a sequence as long as a specified condition is true and then returns the remaining elements.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkSumOverloaded. Computes the sum of a sequence of numeric values.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkTake<(Of <(TSource>)>)Returns a specified number of contiguous elements from the start of a sequence.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkTakeWhileOverloaded. Returns elements from a sequence as long as a specified condition is true, and then skips the remaining elements.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkThenByOverloaded. Performs a subsequent ordering of the elements in a sequence in ascending order.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkThenByDescendingOverloaded. Performs a subsequent ordering of the elements in a sequence in descending order.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkToArray<(Of <(TSource>)>)Creates an array from a IEnumerable<(Of <(T>)>).
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkToDictionaryOverloaded. Creates a Dictionary<(Of <(TKey, TValue>)>) from an IEnumerable<(Of <(T>)>).
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkToList<(Of <(TSource>)>)Creates a List<(Of <(T>)>) from an IEnumerable<(Of <(T>)>).
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkToLookupOverloaded. Creates a generic Lookup<(Of <(TKey, TElement>)>) from an IEnumerable<(Of <(T>)>).
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkUnionOverloaded. Produces the set union of two sequences.
Public methodStatic memberSupported by the .NET Compact FrameworkSupported by the XNA FrameworkWhereOverloaded. Filters a sequence of values based on a predicate.
Top
See Also

Reference

Tags :


Page view tracker