The members of System.Linq.Enumerable are listed below.
See Also: Inherited members from System.Object
static | Aggregate<TSource>(this IEnumerable<TSource>, Func<TSource, TSource, TSource>)Documentation for this section has not yet been entered. | |
static | Aggregate<TSource,TAccumulate>(this IEnumerable<TSource>, TAccumulate, Func<TAccumulate, TSource, TAccumulate>)Documentation for this section has not yet been entered. | |
static | Aggregate<TSource,TAccumulate,TResult>(this IEnumerable<TSource>, TAccumulate, Func<TAccumulate, TSource, TAccumulate>, Func<TAccumulate, TResult>)Documentation for this section has not yet been entered. | |
static | All<TSource>(this IEnumerable<TSource>, Func<TSource, bool>)Documentation for this section has not yet been entered. | |
static | Any<TSource>(this IEnumerable<TSource>)Documentation for this section has not yet been entered. | |
static | Any<TSource>(this IEnumerable<TSource>, Func<TSource, bool>)Documentation for this section has not yet been entered. | |
static | AsEnumerable<TSource>(this IEnumerable<TSource>)Documentation for this section has not yet been entered. | |
static | Average(this IEnumerable<decimal>)Documentation for this section has not yet been entered. | |
static | Average(this IEnumerable<double>)Documentation for this section has not yet been entered. | |
static | Average(this IEnumerable<int>)Documentation for this section has not yet been entered. | |
static | Average(this IEnumerable<long>)Documentation for this section has not yet been entered. | |
static | Average(this IEnumerable<Nullable<decimal>>)Documentation for this section has not yet been entered. | |
static | Average(this IEnumerable<Nullable<double>>)Documentation for this section has not yet been entered. | |
static | Average(this IEnumerable<Nullable<int>>)Documentation for this section has not yet been entered. | |
static | Average(this IEnumerable<Nullable<long>>)Documentation for this section has not yet been entered. | |
static | Average(this IEnumerable<Nullable<float>>)Documentation for this section has not yet been entered. | |
static | Average(this IEnumerable<float>)Documentation for this section has not yet been entered. | |
static | Average<TSource>(this IEnumerable<TSource>, Func<TSource, decimal>)Documentation for this section has not yet been entered. | |
static | Average<TSource>(this IEnumerable<TSource>, Func<TSource, double>)Documentation for this section has not yet been entered. | |
static | Average<TSource>(this IEnumerable<TSource>, Func<TSource, int>)Documentation for this section has not yet been entered. | |
static | Average<TSource>(this IEnumerable<TSource>, Func<TSource, long>)Documentation for this section has not yet been entered. | |
static | Average<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<decimal>>)Documentation for this section has not yet been entered. | |
static | Average<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<double>>)Documentation for this section has not yet been entered. | |
static | Average<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<int>>)Documentation for this section has not yet been entered. | |
static | Average<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<long>>)Documentation for this section has not yet been entered. | |
static | Average<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<float>>)Documentation for this section has not yet been entered. | |
static | Average<TSource>(this IEnumerable<TSource>, Func<TSource, float>)Documentation for this section has not yet been entered. | |
static | Cast<TResult>(this IEnumerable)Documentation for this section has not yet been entered. | |
static | Concat<TSource>(this IEnumerable<TSource>, IEnumerable<TSource>)Documentation for this section has not yet been entered. | |
static | Contains<TSource>(this IEnumerable<TSource>, TSource)Documentation for this section has not yet been entered. | |
static | Contains<TSource>(this IEnumerable<TSource>, TSource, IEqualityComparer<TSource>)Documentation for this section has not yet been entered. | |
static | Count<TSource>(this IEnumerable<TSource>)Documentation for this section has not yet been entered. | |
static | Count<TSource>(this IEnumerable<TSource>, Func<TSource, bool>)Documentation for this section has not yet been entered. | |
static | DefaultIfEmpty<TSource>(this IEnumerable<TSource>)Documentation for this section has not yet been entered. | |
static | DefaultIfEmpty<TSource>(this IEnumerable<TSource>, TSource)Documentation for this section has not yet been entered. | |
static | Distinct<TSource>(this IEnumerable<TSource>)Documentation for this section has not yet been entered. | |
static | Distinct<TSource>(this IEnumerable<TSource>, IEqualityComparer<TSource>)Documentation for this section has not yet been entered. | |
static | ElementAt<TSource>(this IEnumerable<TSource>, int)Documentation for this section has not yet been entered. | |
static | ElementAtOrDefault<TSource>(this IEnumerable<TSource>, int)Documentation for this section has not yet been entered. | |
static | Empty<TResult>()Documentation for this section has not yet been entered. | |
static | Except<TSource>(this IEnumerable<TSource>, IEnumerable<TSource>)Documentation for this section has not yet been entered. | |
static | Except<TSource>(this IEnumerable<TSource>, IEnumerable<TSource>, IEqualityComparer<TSource>)Documentation for this section has not yet been entered. | |
static | First<TSource>(this IEnumerable<TSource>)Documentation for this section has not yet been entered. | |
static | First<TSource>(this IEnumerable<TSource>, Func<TSource, bool>)Documentation for this section has not yet been entered. | |
static | FirstOrDefault<TSource>(this IEnumerable<TSource>)Documentation for this section has not yet been entered. | |
static | FirstOrDefault<TSource>(this IEnumerable<TSource>, Func<TSource, bool>)Documentation for this section has not yet been entered. | |
static | GroupBy<TSource,TKey>(this IEnumerable<TSource>, Func<TSource, TKey>)Documentation for this section has not yet been entered. | |
static | GroupBy<TSource,TKey>(this IEnumerable<TSource>, Func<TSource, TKey>, IEqualityComparer<TKey>)Documentation for this section has not yet been entered. | |
static | GroupBy<TSource,TKey,TElement>(this IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TElement>)Documentation for this section has not yet been entered. | |
static | GroupBy<TSource,TKey,TElement>(this IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TElement>, IEqualityComparer<TKey>)Documentation for this section has not yet been entered. | |
static | GroupBy<TSource,TKey,TResult>(this IEnumerable<TSource>, Func<TSource, TKey>, Func<TKey, IEnumerable<TSource>,TResult>)Documentation for this section has not yet been entered. | |
static | GroupBy<TSource,TKey,TResult>(this IEnumerable<TSource>, Func<TSource, TKey>, Func<TKey, IEnumerable<TSource>,TResult>, IEqualityComparer<TKey>)Documentation for this section has not yet been entered. | |
static | GroupBy<TSource,TKey,TElement,TResult>(this IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TElement>, Func<TKey, IEnumerable<TElement>,TResult>)Documentation for this section has not yet been entered. | |
static | GroupBy<TSource,TKey,TElement,TResult>(this IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TElement>, Func<TKey, IEnumerable<TElement>,TResult>, IEqualityComparer<TKey>)Documentation for this section has not yet been entered. | |
static | GroupJoin<TOuter,TInner,TKey,TResult>(this IEnumerable<TOuter>, IEnumerable<TInner>, Func<TOuter, TKey>, Func<TInner, TKey>, Func<TOuter, IEnumerable<TInner>,TResult>)Documentation for this section has not yet been entered. | |
static | GroupJoin<TOuter,TInner,TKey,TResult>(this IEnumerable<TOuter>, IEnumerable<TInner>, Func<TOuter, TKey>, Func<TInner, TKey>, Func<TOuter, IEnumerable<TInner>,TResult>, IEqualityComparer<TKey>)Documentation for this section has not yet been entered. | |
static | Intersect<TSource>(this IEnumerable<TSource>, IEnumerable<TSource>)Documentation for this section has not yet been entered. | |
static | Intersect<TSource>(this IEnumerable<TSource>, IEnumerable<TSource>, IEqualityComparer<TSource>)Documentation for this section has not yet been entered. | |
static | Join<TOuter,TInner,TKey,TResult>(this IEnumerable<TOuter>, IEnumerable<TInner>, Func<TOuter, TKey>, Func<TInner, TKey>, Func<TOuter, TInner, TResult>)Documentation for this section has not yet been entered. | |
static | Join<TOuter,TInner,TKey,TResult>(this IEnumerable<TOuter>, IEnumerable<TInner>, Func<TOuter, TKey>, Func<TInner, TKey>, Func<TOuter, TInner, TResult>, IEqualityComparer<TKey>)Documentation for this section has not yet been entered. | |
static | Last<TSource>(this IEnumerable<TSource>)Documentation for this section has not yet been entered. | |
static | Last<TSource>(this IEnumerable<TSource>, Func<TSource, bool>)Documentation for this section has not yet been entered. | |
static | LastOrDefault<TSource>(this IEnumerable<TSource>)Documentation for this section has not yet been entered. | |
static | LastOrDefault<TSource>(this IEnumerable<TSource>, Func<TSource, bool>)Documentation for this section has not yet been entered. | |
static | LongCount<TSource>(this IEnumerable<TSource>)Documentation for this section has not yet been entered. | |
static | LongCount<TSource>(this IEnumerable<TSource>, Func<TSource, bool>)Documentation for this section has not yet been entered. | |
static | Max(this IEnumerable<decimal>)Documentation for this section has not yet been entered. | |
static | Max(this IEnumerable<double>)Documentation for this section has not yet been entered. | |
static | Max(this IEnumerable<int>)Documentation for this section has not yet been entered. | |
static | Max(this IEnumerable<long>)Documentation for this section has not yet been entered. | |
static | Max(this IEnumerable<Nullable<decimal>>)Documentation for this section has not yet been entered. | |
static | Max(this IEnumerable<Nullable<double>>)Documentation for this section has not yet been entered. | |
static | Max(this IEnumerable<Nullable<int>>)Documentation for this section has not yet been entered. | |
static | Max(this IEnumerable<Nullable<long>>)Documentation for this section has not yet been entered. | |
static | Max(this IEnumerable<Nullable<float>>)Documentation for this section has not yet been entered. | |
static | Max(this IEnumerable<float>)Documentation for this section has not yet been entered. | |
static | Max<TSource>(this IEnumerable<TSource>)Documentation for this section has not yet been entered. | |
static | Max<TSource>(this IEnumerable<TSource>, Func<TSource, decimal>)Documentation for this section has not yet been entered. | |
static | Max<TSource>(this IEnumerable<TSource>, Func<TSource, double>)Documentation for this section has not yet been entered. | |
static | Max<TSource>(this IEnumerable<TSource>, Func<TSource, int>)Documentation for this section has not yet been entered. | |
static | Max<TSource>(this IEnumerable<TSource>, Func<TSource, long>)Documentation for this section has not yet been entered. | |
static | Max<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<decimal>>)Documentation for this section has not yet been entered. | |
static | Max<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<double>>)Documentation for this section has not yet been entered. | |
static | Max<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<int>>)Documentation for this section has not yet been entered. | |
static | Max<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<long>>)Documentation for this section has not yet been entered. | |
static | Max<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<float>>)Documentation for this section has not yet been entered. | |
static | Max<TSource>(this IEnumerable<TSource>, Func<TSource, float>)Documentation for this section has not yet been entered. | |
static | Max<TSource,TResult>(this IEnumerable<TSource>, Func<TSource, TResult>)Documentation for this section has not yet been entered. | |
static | Min(this IEnumerable<decimal>)Documentation for this section has not yet been entered. | |
static | Min(this IEnumerable<double>)Documentation for this section has not yet been entered. | |
static | Min(this IEnumerable<int>)Documentation for this section has not yet been entered. | |
static | Min(this IEnumerable<long>)Documentation for this section has not yet been entered. | |
static | Min(this IEnumerable<Nullable<decimal>>)Documentation for this section has not yet been entered. | |
static | Min(this IEnumerable<Nullable<double>>)Documentation for this section has not yet been entered. | |
static | Min(this IEnumerable<Nullable<int>>)Documentation for this section has not yet been entered. | |
static | Min(this IEnumerable<Nullable<long>>)Documentation for this section has not yet been entered. | |
static | Min(this IEnumerable<Nullable<float>>)Documentation for this section has not yet been entered. | |
static | Min(this IEnumerable<float>)Documentation for this section has not yet been entered. | |
static | Min<TSource>(this IEnumerable<TSource>)Documentation for this section has not yet been entered. | |
static | Min<TSource>(this IEnumerable<TSource>, Func<TSource, decimal>)Documentation for this section has not yet been entered. | |
static | Min<TSource>(this IEnumerable<TSource>, Func<TSource, double>)Documentation for this section has not yet been entered. | |
static | Min<TSource>(this IEnumerable<TSource>, Func<TSource, int>)Documentation for this section has not yet been entered. | |
static | Min<TSource>(this IEnumerable<TSource>, Func<TSource, long>)Documentation for this section has not yet been entered. | |
static | Min<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<decimal>>)Documentation for this section has not yet been entered. | |
static | Min<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<double>>)Documentation for this section has not yet been entered. | |
static | Min<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<int>>)Documentation for this section has not yet been entered. | |
static | Min<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<long>>)Documentation for this section has not yet been entered. | |
static | Min<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<float>>)Documentation for this section has not yet been entered. | |
static | Min<TSource>(this IEnumerable<TSource>, Func<TSource, float>)Documentation for this section has not yet been entered. | |
static | Min<TSource,TResult>(this IEnumerable<TSource>, Func<TSource, TResult>)Documentation for this section has not yet been entered. | |
static | OfType<TResult>(this IEnumerable)Documentation for this section has not yet been entered. | |
static | OrderBy<TSource,TKey>(this IEnumerable<TSource>, Func<TSource, TKey>)Documentation for this section has not yet been entered. | |
static | OrderBy<TSource,TKey>(this IEnumerable<TSource>, Func<TSource, TKey>, IComparer<TKey>)Documentation for this section has not yet been entered. | |
static | OrderByDescending<TSource,TKey>(this IEnumerable<TSource>, Func<TSource, TKey>)Documentation for this section has not yet been entered. | |
static | OrderByDescending<TSource,TKey>(this IEnumerable<TSource>, Func<TSource, TKey>, IComparer<TKey>)Documentation for this section has not yet been entered. | |
static | Range(int, int)Documentation for this section has not yet been entered. | |
static | Repeat<TResult>(TResult, int)Documentation for this section has not yet been entered. | |
static | Reverse<TSource>(this IEnumerable<TSource>)Documentation for this section has not yet been entered. | |
static | Select<TSource,TResult>(this IEnumerable<TSource>, Func<TSource, int, TResult>)Documentation for this section has not yet been entered. | |
static | Select<TSource,TResult>(this IEnumerable<TSource>, Func<TSource, TResult>)Documentation for this section has not yet been entered. | |
static | SelectMany<TSource,TResult>(this IEnumerable<TSource>, Func<TSource, IEnumerable<TResult>>)Documentation for this section has not yet been entered. | |
static | SelectMany<TSource,TResult>(this IEnumerable<TSource>, Func<TSource, int, IEnumerable<TResult>>)Documentation for this section has not yet been entered. | |
static | SelectMany<TSource,TCollection,TResult>(this IEnumerable<TSource>, Func<TSource, IEnumerable<TCollection>>, Func<TSource, TCollection, TResult>)Documentation for this section has not yet been entered. | |
static | SelectMany<TSource,TCollection,TResult>(this IEnumerable<TSource>, Func<TSource, int, IEnumerable<TCollection>>, Func<TSource, TCollection, TResult>)Documentation for this section has not yet been entered. | |
static | SequenceEqual<TSource>(this IEnumerable<TSource>, IEnumerable<TSource>)Documentation for this section has not yet been entered. | |
static | SequenceEqual<TSource>(this IEnumerable<TSource>, IEnumerable<TSource>, IEqualityComparer<TSource>)Documentation for this section has not yet been entered. | |
static | Single<TSource>(this IEnumerable<TSource>)Documentation for this section has not yet been entered. | |
static | Single<TSource>(this IEnumerable<TSource>, Func<TSource, bool>)Documentation for this section has not yet been entered. | |
static | SingleOrDefault<TSource>(this IEnumerable<TSource>)Documentation for this section has not yet been entered. | |
static | SingleOrDefault<TSource>(this IEnumerable<TSource>, Func<TSource, bool>)Documentation for this section has not yet been entered. | |
static | Skip<TSource>(this IEnumerable<TSource>, int)Documentation for this section has not yet been entered. | |
static | SkipWhile<TSource>(this IEnumerable<TSource>, Func<TSource, bool>)Documentation for this section has not yet been entered. | |
static | SkipWhile<TSource>(this IEnumerable<TSource>, Func<TSource, int, bool>)Documentation for this section has not yet been entered. | |
static | Sum(this IEnumerable<decimal>)Documentation for this section has not yet been entered. | |
static | Sum(this IEnumerable<double>)Documentation for this section has not yet been entered. | |
static | Sum(this IEnumerable<int>)Documentation for this section has not yet been entered. | |
static | Sum(this IEnumerable<long>)Documentation for this section has not yet been entered. | |
static | Sum(this IEnumerable<Nullable<decimal>>)Documentation for this section has not yet been entered. | |
static | Sum(this IEnumerable<Nullable<double>>)Documentation for this section has not yet been entered. | |
static | Sum(this IEnumerable<Nullable<int>>)Documentation for this section has not yet been entered. | |
static | Sum(this IEnumerable<Nullable<long>>)Documentation for this section has not yet been entered. | |
static | Sum(this IEnumerable<Nullable<float>>)Documentation for this section has not yet been entered. | |
static | Sum(this IEnumerable<float>)Documentation for this section has not yet been entered. | |
static | Sum<TSource>(this IEnumerable<TSource>, Func<TSource, decimal>)Documentation for this section has not yet been entered. | |
static | Sum<TSource>(this IEnumerable<TSource>, Func<TSource, double>)Documentation for this section has not yet been entered. | |
static | Sum<TSource>(this IEnumerable<TSource>, Func<TSource, int>)Documentation for this section has not yet been entered. | |
static | Sum<TSource>(this IEnumerable<TSource>, Func<TSource, long>)Documentation for this section has not yet been entered. | |
static | Sum<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<decimal>>)Documentation for this section has not yet been entered. | |
static | Sum<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<double>>)Documentation for this section has not yet been entered. | |
static | Sum<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<int>>)Documentation for this section has not yet been entered. | |
static | Sum<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<long>>)Documentation for this section has not yet been entered. | |
static | Sum<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<float>>)Documentation for this section has not yet been entered. | |
static | Sum<TSource>(this IEnumerable<TSource>, Func<TSource, float>)Documentation for this section has not yet been entered. | |
static | Take<TSource>(this IEnumerable<TSource>, int)Documentation for this section has not yet been entered. | |
static | TakeWhile<TSource>(this IEnumerable<TSource>, Func<TSource, bool>)Documentation for this section has not yet been entered. | |
static | TakeWhile<TSource>(this IEnumerable<TSource>, Func<TSource, int, bool>)Documentation for this section has not yet been entered. | |
static | ThenBy<TSource,TKey>(this IOrderedEnumerable<TSource>, Func<TSource, TKey>)Documentation for this section has not yet been entered. | |
static | ThenBy<TSource,TKey>(this IOrderedEnumerable<TSource>, Func<TSource, TKey>, IComparer<TKey>)Documentation for this section has not yet been entered. | |
static | ThenByDescending<TSource,TKey>(this IOrderedEnumerable<TSource>, Func<TSource, TKey>)Documentation for this section has not yet been entered. | |
static | ThenByDescending<TSource,TKey>(this IOrderedEnumerable<TSource>, Func<TSource, TKey>, IComparer<TKey>)Documentation for this section has not yet been entered. | |
static | ToArray<TSource>(this IEnumerable<TSource>)Documentation for this section has not yet been entered. | |
static | ToDictionary<TSource,TKey>(this IEnumerable<TSource>, Func<TSource, TKey>)Documentation for this section has not yet been entered. | |
static | ToDictionary<TSource,TKey>(this IEnumerable<TSource>, Func<TSource, TKey>, IEqualityComparer<TKey>)Documentation for this section has not yet been entered. | |
static | ToDictionary<TSource,TKey,TElement>(this IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TElement>)Documentation for this section has not yet been entered. | |
static | ToDictionary<TSource,TKey,TElement>(this IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TElement>, IEqualityComparer<TKey>)Documentation for this section has not yet been entered. | |
static | ToList<TSource>(this IEnumerable<TSource>)Documentation for this section has not yet been entered. | |
static | ToLookup<TSource,TKey>(this IEnumerable<TSource>, Func<TSource, TKey>)Documentation for this section has not yet been entered. | |
static | ToLookup<TSource,TKey>(this IEnumerable<TSource>, Func<TSource, TKey>, IEqualityComparer<TKey>)Documentation for this section has not yet been entered. | |
static | ToLookup<TSource,TKey,TElement>(this IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TElement>)Documentation for this section has not yet been entered. | |
static | ToLookup<TSource,TKey,TElement>(this IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TElement>, IEqualityComparer<TKey>)Documentation for this section has not yet been entered. | |
static | Union<TSource>(this IEnumerable<TSource>, IEnumerable<TSource>)Documentation for this section has not yet been entered. | |
static | Union<TSource>(this IEnumerable<TSource>, IEnumerable<TSource>, IEqualityComparer<TSource>)Documentation for this section has not yet been entered. | |
static | Where<TSource>(this IEnumerable<TSource>, Func<TSource, bool>)Documentation for this section has not yet been entered. | |
static | Where<TSource>(this IEnumerable<TSource>, Func<TSource, int, bool>)Documentation for this section has not yet been entered. | |