Mono Class Library: OverviewSystem.Linq.Enumerable: Members |
The members of System.Linq.Enumerable are listed below.
See Also: Inherited members from System.Object
staticAggregate<TSource>(this IEnumerable<TSource>, Func<TSource, TSource, TSource>) : TSource Documentation for this section has not yet been entered. staticAggregate<TSource,TAccumulate>(this IEnumerable<TSource>, TAccumulate, Func<TAccumulate, TSource, TAccumulate>) : TAccumulate Documentation for this section has not yet been entered. staticAggregate<TSource,TAccumulate,TResult>(this IEnumerable<TSource>, TAccumulate, Func<TAccumulate, TSource, TAccumulate>, Func<TAccumulate, TResult>) : TResult Documentation for this section has not yet been entered. staticAll<TSource>(this IEnumerable<TSource>, Func<TSource, bool>) : bool Documentation for this section has not yet been entered. staticAny<TSource>(this IEnumerable<TSource>) : bool Documentation for this section has not yet been entered. staticAny<TSource>(this IEnumerable<TSource>, Func<TSource, bool>) : bool Documentation for this section has not yet been entered. staticAsEnumerable<TSource>(this IEnumerable<TSource>) : IEnumerable<TSource> Documentation for this section has not yet been entered. staticAverage(this IEnumerable<decimal>) : decimal Documentation for this section has not yet been entered. staticAverage(this IEnumerable<double>) : double Documentation for this section has not yet been entered. staticAverage(this IEnumerable<int>) : double Documentation for this section has not yet been entered. staticAverage(this IEnumerable<long>) : double Documentation for this section has not yet been entered. staticAverage(this IEnumerable<Nullable<decimal>>) : Nullable<decimal> Documentation for this section has not yet been entered. staticAverage(this IEnumerable<Nullable<double>>) : Nullable<double> Documentation for this section has not yet been entered. staticAverage(this IEnumerable<Nullable<int>>) : Nullable<double> Documentation for this section has not yet been entered. staticAverage(this IEnumerable<Nullable<long>>) : Nullable<double> Documentation for this section has not yet been entered. staticAverage(this IEnumerable<Nullable<float>>) : Nullable<float> Documentation for this section has not yet been entered. staticAverage(this IEnumerable<float>) : float Documentation for this section has not yet been entered. staticAverage<TSource>(this IEnumerable<TSource>, Func<TSource, decimal>) : decimal Documentation for this section has not yet been entered. staticAverage<TSource>(this IEnumerable<TSource>, Func<TSource, double>) : double Documentation for this section has not yet been entered. staticAverage<TSource>(this IEnumerable<TSource>, Func<TSource, int>) : double Documentation for this section has not yet been entered. staticAverage<TSource>(this IEnumerable<TSource>, Func<TSource, long>) : double Documentation for this section has not yet been entered. staticAverage<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<decimal>>) : Nullable<decimal> Documentation for this section has not yet been entered. staticAverage<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<double>>) : Nullable<double> Documentation for this section has not yet been entered. staticAverage<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<int>>) : Nullable<double> Documentation for this section has not yet been entered. staticAverage<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<long>>) : Nullable<double> Documentation for this section has not yet been entered. staticAverage<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<float>>) : Nullable<float> Documentation for this section has not yet been entered. staticAverage<TSource>(this IEnumerable<TSource>, Func<TSource, float>) : float Documentation for this section has not yet been entered. staticCast<TResult>(this IEnumerable) : IEnumerable<TResult> Documentation for this section has not yet been entered. staticConcat<TSource>(this IEnumerable<TSource>, IEnumerable<TSource>) : IEnumerable<TSource> Documentation for this section has not yet been entered. staticContains<TSource>(this IEnumerable<TSource>, TSource) : bool Documentation for this section has not yet been entered. staticContains<TSource>(this IEnumerable<TSource>, TSource, IEqualityComparer<TSource>) : bool Documentation for this section has not yet been entered. staticCount<TSource>(this IEnumerable<TSource>) : int Documentation for this section has not yet been entered. staticCount<TSource>(this IEnumerable<TSource>, Func<TSource, bool>) : int Documentation for this section has not yet been entered. staticDefaultIfEmpty<TSource>(this IEnumerable<TSource>) : IEnumerable<TSource> Documentation for this section has not yet been entered. staticDefaultIfEmpty<TSource>(this IEnumerable<TSource>, TSource) : IEnumerable<TSource> Documentation for this section has not yet been entered. staticDistinct<TSource>(this IEnumerable<TSource>) : IEnumerable<TSource> Documentation for this section has not yet been entered. staticDistinct<TSource>(this IEnumerable<TSource>, IEqualityComparer<TSource>) : IEnumerable<TSource> Documentation for this section has not yet been entered. staticElementAt<TSource>(this IEnumerable<TSource>, int) : TSource Documentation for this section has not yet been entered. staticElementAtOrDefault<TSource>(this IEnumerable<TSource>, int) : TSource Documentation for this section has not yet been entered. staticEmpty<TResult>() : IEnumerable<TResult> Documentation for this section has not yet been entered. staticExcept<TSource>(this IEnumerable<TSource>, IEnumerable<TSource>) : IEnumerable<TSource> Documentation for this section has not yet been entered. staticExcept<TSource>(this IEnumerable<TSource>, IEnumerable<TSource>, IEqualityComparer<TSource>) : IEnumerable<TSource> Documentation for this section has not yet been entered. staticFirst<TSource>(this IEnumerable<TSource>) : TSource Documentation for this section has not yet been entered. staticFirst<TSource>(this IEnumerable<TSource>, Func<TSource, bool>) : TSource Documentation for this section has not yet been entered. staticFirstOrDefault<TSource>(this IEnumerable<TSource>) : TSource Documentation for this section has not yet been entered. staticFirstOrDefault<TSource>(this IEnumerable<TSource>, Func<TSource, bool>) : TSource Documentation for this section has not yet been entered. staticGroupBy<TSource,TKey>(this IEnumerable<TSource>, Func<TSource, TKey>) : IEnumerable<IGrouping<TKey, TSource>> Documentation for this section has not yet been entered. staticGroupBy<TSource,TKey>(this IEnumerable<TSource>, Func<TSource, TKey>, IEqualityComparer<TKey>) : IEnumerable<IGrouping<TKey, TSource>> Documentation for this section has not yet been entered. staticGroupBy<TSource,TKey,TElement>(this IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TElement>) : IEnumerable<IGrouping<TKey, TElement>> Documentation for this section has not yet been entered. staticGroupBy<TSource,TKey,TElement>(this IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TElement>, IEqualityComparer<TKey>) : IEnumerable<IGrouping<TKey, TElement>> Documentation for this section has not yet been entered. staticGroupBy<TSource,TKey,TResult>(this IEnumerable<TSource>, Func<TSource, TKey>, Func<TKey, IEnumerable<TSource>,TResult>) : IEnumerable<TResult> Documentation for this section has not yet been entered. staticGroupBy<TSource,TKey,TResult>(this IEnumerable<TSource>, Func<TSource, TKey>, Func<TKey, IEnumerable<TSource>,TResult>, IEqualityComparer<TKey>) : IEnumerable<TResult> Documentation for this section has not yet been entered. staticGroupBy<TSource,TKey,TElement,TResult>(this IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TElement>, Func<TKey, IEnumerable<TElement>,TResult>) : IEnumerable<TResult> Documentation for this section has not yet been entered. staticGroupBy<TSource,TKey,TElement,TResult>(this IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TElement>, Func<TKey, IEnumerable<TElement>,TResult>, IEqualityComparer<TKey>) : IEnumerable<TResult> Documentation for this section has not yet been entered. staticGroupJoin<TOuter,TInner,TKey,TResult>(this IEnumerable<TOuter>, IEnumerable<TInner>, Func<TOuter, TKey>, Func<TInner, TKey>, Func<TOuter, IEnumerable<TInner>,TResult>) : IEnumerable<TResult> Documentation for this section has not yet been entered. staticGroupJoin<TOuter,TInner,TKey,TResult>(this IEnumerable<TOuter>, IEnumerable<TInner>, Func<TOuter, TKey>, Func<TInner, TKey>, Func<TOuter, IEnumerable<TInner>,TResult>, IEqualityComparer<TKey>) : IEnumerable<TResult> Documentation for this section has not yet been entered. staticIntersect<TSource>(this IEnumerable<TSource>, IEnumerable<TSource>) : IEnumerable<TSource> Documentation for this section has not yet been entered. staticIntersect<TSource>(this IEnumerable<TSource>, IEnumerable<TSource>, IEqualityComparer<TSource>) : IEnumerable<TSource> Documentation for this section has not yet been entered. staticJoin<TOuter,TInner,TKey,TResult>(this IEnumerable<TOuter>, IEnumerable<TInner>, Func<TOuter, TKey>, Func<TInner, TKey>, Func<TOuter, TInner, TResult>) : IEnumerable<TResult> Documentation for this section has not yet been entered. staticJoin<TOuter,TInner,TKey,TResult>(this IEnumerable<TOuter>, IEnumerable<TInner>, Func<TOuter, TKey>, Func<TInner, TKey>, Func<TOuter, TInner, TResult>, IEqualityComparer<TKey>) : IEnumerable<TResult> Documentation for this section has not yet been entered. staticLast<TSource>(this IEnumerable<TSource>) : TSource Documentation for this section has not yet been entered. staticLast<TSource>(this IEnumerable<TSource>, Func<TSource, bool>) : TSource Documentation for this section has not yet been entered. staticLastOrDefault<TSource>(this IEnumerable<TSource>) : TSource Documentation for this section has not yet been entered. staticLastOrDefault<TSource>(this IEnumerable<TSource>, Func<TSource, bool>) : TSource Documentation for this section has not yet been entered. staticLongCount<TSource>(this IEnumerable<TSource>) : long Documentation for this section has not yet been entered. staticLongCount<TSource>(this IEnumerable<TSource>, Func<TSource, bool>) : long Documentation for this section has not yet been entered. staticMax(this IEnumerable<decimal>) : decimal Documentation for this section has not yet been entered. staticMax(this IEnumerable<double>) : double Documentation for this section has not yet been entered. staticMax(this IEnumerable<int>) : int Documentation for this section has not yet been entered. staticMax(this IEnumerable<long>) : long Documentation for this section has not yet been entered. staticMax(this IEnumerable<Nullable<decimal>>) : Nullable<decimal> Documentation for this section has not yet been entered. staticMax(this IEnumerable<Nullable<double>>) : Nullable<double> Documentation for this section has not yet been entered. staticMax(this IEnumerable<Nullable<int>>) : Nullable<int> Documentation for this section has not yet been entered. staticMax(this IEnumerable<Nullable<long>>) : Nullable<long> Documentation for this section has not yet been entered. staticMax(this IEnumerable<Nullable<float>>) : Nullable<float> Documentation for this section has not yet been entered. staticMax(this IEnumerable<float>) : float Documentation for this section has not yet been entered. staticMax<TSource>(this IEnumerable<TSource>) : TSource Documentation for this section has not yet been entered. staticMax<TSource>(this IEnumerable<TSource>, Func<TSource, decimal>) : decimal Documentation for this section has not yet been entered. staticMax<TSource>(this IEnumerable<TSource>, Func<TSource, double>) : double Documentation for this section has not yet been entered. staticMax<TSource>(this IEnumerable<TSource>, Func<TSource, int>) : int Documentation for this section has not yet been entered. staticMax<TSource>(this IEnumerable<TSource>, Func<TSource, long>) : long Documentation for this section has not yet been entered. staticMax<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<decimal>>) : Nullable<decimal> Documentation for this section has not yet been entered. staticMax<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<double>>) : Nullable<double> Documentation for this section has not yet been entered. staticMax<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<int>>) : Nullable<int> Documentation for this section has not yet been entered. staticMax<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<long>>) : Nullable<long> Documentation for this section has not yet been entered. staticMax<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<float>>) : Nullable<float> Documentation for this section has not yet been entered. staticMax<TSource>(this IEnumerable<TSource>, Func<TSource, float>) : float Documentation for this section has not yet been entered. staticMax<TSource,TResult>(this IEnumerable<TSource>, Func<TSource, TResult>) : TResult Documentation for this section has not yet been entered. staticMin(this IEnumerable<decimal>) : decimal Documentation for this section has not yet been entered. staticMin(this IEnumerable<double>) : double Documentation for this section has not yet been entered. staticMin(this IEnumerable<int>) : int Documentation for this section has not yet been entered. staticMin(this IEnumerable<long>) : long Documentation for this section has not yet been entered. staticMin(this IEnumerable<Nullable<decimal>>) : Nullable<decimal> Documentation for this section has not yet been entered. staticMin(this IEnumerable<Nullable<double>>) : Nullable<double> Documentation for this section has not yet been entered. staticMin(this IEnumerable<Nullable<int>>) : Nullable<int> Documentation for this section has not yet been entered. staticMin(this IEnumerable<Nullable<long>>) : Nullable<long> Documentation for this section has not yet been entered. staticMin(this IEnumerable<Nullable<float>>) : Nullable<float> Documentation for this section has not yet been entered. staticMin(this IEnumerable<float>) : float Documentation for this section has not yet been entered. staticMin<TSource>(this IEnumerable<TSource>) : TSource Documentation for this section has not yet been entered. staticMin<TSource>(this IEnumerable<TSource>, Func<TSource, decimal>) : decimal Documentation for this section has not yet been entered. staticMin<TSource>(this IEnumerable<TSource>, Func<TSource, double>) : double Documentation for this section has not yet been entered. staticMin<TSource>(this IEnumerable<TSource>, Func<TSource, int>) : int Documentation for this section has not yet been entered. staticMin<TSource>(this IEnumerable<TSource>, Func<TSource, long>) : long Documentation for this section has not yet been entered. staticMin<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<decimal>>) : Nullable<decimal> Documentation for this section has not yet been entered. staticMin<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<double>>) : Nullable<double> Documentation for this section has not yet been entered. staticMin<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<int>>) : Nullable<int> Documentation for this section has not yet been entered. staticMin<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<long>>) : Nullable<long> Documentation for this section has not yet been entered. staticMin<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<float>>) : Nullable<float> Documentation for this section has not yet been entered. staticMin<TSource>(this IEnumerable<TSource>, Func<TSource, float>) : float Documentation for this section has not yet been entered. staticMin<TSource,TResult>(this IEnumerable<TSource>, Func<TSource, TResult>) : TResult Documentation for this section has not yet been entered. staticOfType<TResult>(this IEnumerable) : IEnumerable<TResult> Documentation for this section has not yet been entered. staticOrderBy<TSource,TKey>(this IEnumerable<TSource>, Func<TSource, TKey>) : IOrderedEnumerable<TSource> Documentation for this section has not yet been entered. staticOrderBy<TSource,TKey>(this IEnumerable<TSource>, Func<TSource, TKey>, IComparer<TKey>) : IOrderedEnumerable<TSource> Documentation for this section has not yet been entered. staticOrderByDescending<TSource,TKey>(this IEnumerable<TSource>, Func<TSource, TKey>) : IOrderedEnumerable<TSource> Documentation for this section has not yet been entered. staticOrderByDescending<TSource,TKey>(this IEnumerable<TSource>, Func<TSource, TKey>, IComparer<TKey>) : IOrderedEnumerable<TSource> Documentation for this section has not yet been entered. staticRange(int, int) : IEnumerable<int> Documentation for this section has not yet been entered. staticRepeat<TResult>(TResult, int) : IEnumerable<TResult> Documentation for this section has not yet been entered. staticReverse<TSource>(this IEnumerable<TSource>) : IEnumerable<TSource> Documentation for this section has not yet been entered. staticSelect<TSource,TResult>(this IEnumerable<TSource>, Func<TSource, int, TResult>) : IEnumerable<TResult> Documentation for this section has not yet been entered. staticSelect<TSource,TResult>(this IEnumerable<TSource>, Func<TSource, TResult>) : IEnumerable<TResult> Documentation for this section has not yet been entered. staticSelectMany<TSource,TResult>(this IEnumerable<TSource>, Func<TSource, IEnumerable<TResult>>) : IEnumerable<TResult> Documentation for this section has not yet been entered. staticSelectMany<TSource,TResult>(this IEnumerable<TSource>, Func<TSource, int, IEnumerable<TResult>>) : IEnumerable<TResult> Documentation for this section has not yet been entered. staticSelectMany<TSource,TCollection,TResult>(this IEnumerable<TSource>, Func<TSource, IEnumerable<TCollection>>, Func<TSource, TCollection, TResult>) : IEnumerable<TResult> Documentation for this section has not yet been entered. staticSelectMany<TSource,TCollection,TResult>(this IEnumerable<TSource>, Func<TSource, int, IEnumerable<TCollection>>, Func<TSource, TCollection, TResult>) : IEnumerable<TResult> Documentation for this section has not yet been entered. staticSequenceEqual<TSource>(this IEnumerable<TSource>, IEnumerable<TSource>) : bool Documentation for this section has not yet been entered. staticSequenceEqual<TSource>(this IEnumerable<TSource>, IEnumerable<TSource>, IEqualityComparer<TSource>) : bool Documentation for this section has not yet been entered. staticSingle<TSource>(this IEnumerable<TSource>) : TSource Documentation for this section has not yet been entered. staticSingle<TSource>(this IEnumerable<TSource>, Func<TSource, bool>) : TSource Documentation for this section has not yet been entered. staticSingleOrDefault<TSource>(this IEnumerable<TSource>) : TSource Documentation for this section has not yet been entered. staticSingleOrDefault<TSource>(this IEnumerable<TSource>, Func<TSource, bool>) : TSource Documentation for this section has not yet been entered. staticSkip<TSource>(this IEnumerable<TSource>, int) : IEnumerable<TSource> Documentation for this section has not yet been entered. staticSkipWhile<TSource>(this IEnumerable<TSource>, Func<TSource, bool>) : IEnumerable<TSource> Documentation for this section has not yet been entered. staticSkipWhile<TSource>(this IEnumerable<TSource>, Func<TSource, int, bool>) : IEnumerable<TSource> Documentation for this section has not yet been entered. staticSum(this IEnumerable<decimal>) : decimal Documentation for this section has not yet been entered. staticSum(this IEnumerable<double>) : double Documentation for this section has not yet been entered. staticSum(this IEnumerable<int>) : int Documentation for this section has not yet been entered. staticSum(this IEnumerable<long>) : long Documentation for this section has not yet been entered. staticSum(this IEnumerable<Nullable<decimal>>) : Nullable<decimal> Documentation for this section has not yet been entered. staticSum(this IEnumerable<Nullable<double>>) : Nullable<double> Documentation for this section has not yet been entered. staticSum(this IEnumerable<Nullable<int>>) : Nullable<int> Documentation for this section has not yet been entered. staticSum(this IEnumerable<Nullable<long>>) : Nullable<long> Documentation for this section has not yet been entered. staticSum(this IEnumerable<Nullable<float>>) : Nullable<float> Documentation for this section has not yet been entered. staticSum(this IEnumerable<float>) : float Documentation for this section has not yet been entered. staticSum<TSource>(this IEnumerable<TSource>, Func<TSource, decimal>) : decimal Documentation for this section has not yet been entered. staticSum<TSource>(this IEnumerable<TSource>, Func<TSource, double>) : double Documentation for this section has not yet been entered. staticSum<TSource>(this IEnumerable<TSource>, Func<TSource, int>) : int Documentation for this section has not yet been entered. staticSum<TSource>(this IEnumerable<TSource>, Func<TSource, long>) : long Documentation for this section has not yet been entered. staticSum<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<decimal>>) : Nullable<decimal> Documentation for this section has not yet been entered. staticSum<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<double>>) : Nullable<double> Documentation for this section has not yet been entered. staticSum<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<int>>) : Nullable<int> Documentation for this section has not yet been entered. staticSum<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<long>>) : Nullable<long> Documentation for this section has not yet been entered. staticSum<TSource>(this IEnumerable<TSource>, Func<TSource, Nullable<float>>) : Nullable<float> Documentation for this section has not yet been entered. staticSum<TSource>(this IEnumerable<TSource>, Func<TSource, float>) : float Documentation for this section has not yet been entered. staticTake<TSource>(this IEnumerable<TSource>, int) : IEnumerable<TSource> Documentation for this section has not yet been entered. staticTakeWhile<TSource>(this IEnumerable<TSource>, Func<TSource, bool>) : IEnumerable<TSource> Documentation for this section has not yet been entered. staticTakeWhile<TSource>(this IEnumerable<TSource>, Func<TSource, int, bool>) : IEnumerable<TSource> Documentation for this section has not yet been entered. staticThenBy<TSource,TKey>(this IOrderedEnumerable<TSource>, Func<TSource, TKey>) : IOrderedEnumerable<TSource> Documentation for this section has not yet been entered. staticThenBy<TSource,TKey>(this IOrderedEnumerable<TSource>, Func<TSource, TKey>, IComparer<TKey>) : IOrderedEnumerable<TSource> Documentation for this section has not yet been entered. staticThenByDescending<TSource,TKey>(this IOrderedEnumerable<TSource>, Func<TSource, TKey>) : IOrderedEnumerable<TSource> Documentation for this section has not yet been entered. staticThenByDescending<TSource,TKey>(this IOrderedEnumerable<TSource>, Func<TSource, TKey>, IComparer<TKey>) : IOrderedEnumerable<TSource> Documentation for this section has not yet been entered. staticToArray<TSource>(this IEnumerable<TSource>) : TSource[] Documentation for this section has not yet been entered. staticToDictionary<TSource,TKey>(this IEnumerable<TSource>, Func<TSource, TKey>) : Dictionary<TKey, TSource> Documentation for this section has not yet been entered. staticToDictionary<TSource,TKey>(this IEnumerable<TSource>, Func<TSource, TKey>, IEqualityComparer<TKey>) : Dictionary<TKey, TSource> Documentation for this section has not yet been entered. staticToDictionary<TSource,TKey,TElement>(this IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TElement>) : Dictionary<TKey, TElement> Documentation for this section has not yet been entered. staticToDictionary<TSource,TKey,TElement>(this IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TElement>, IEqualityComparer<TKey>) : Dictionary<TKey, TElement> Documentation for this section has not yet been entered. staticToList<TSource>(this IEnumerable<TSource>) : List<TSource> Documentation for this section has not yet been entered. staticToLookup<TSource,TKey>(this IEnumerable<TSource>, Func<TSource, TKey>) : ILookup<TKey, TSource> Documentation for this section has not yet been entered. staticToLookup<TSource,TKey>(this IEnumerable<TSource>, Func<TSource, TKey>, IEqualityComparer<TKey>) : ILookup<TKey, TSource> Documentation for this section has not yet been entered. staticToLookup<TSource,TKey,TElement>(this IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TElement>) : ILookup<TKey, TElement> Documentation for this section has not yet been entered. staticToLookup<TSource,TKey,TElement>(this IEnumerable<TSource>, Func<TSource, TKey>, Func<TSource, TElement>, IEqualityComparer<TKey>) : ILookup<TKey, TElement> Documentation for this section has not yet been entered. staticUnion<TSource>(this IEnumerable<TSource>, IEnumerable<TSource>) : IEnumerable<TSource> Documentation for this section has not yet been entered. staticUnion<TSource>(this IEnumerable<TSource>, IEnumerable<TSource>, IEqualityComparer<TSource>) : IEnumerable<TSource> Documentation for this section has not yet been entered. staticWhere<TSource>(this IEnumerable<TSource>, Func<TSource, bool>) : IEnumerable<TSource> Documentation for this section has not yet been entered. staticWhere<TSource>(this IEnumerable<TSource>, Func<TSource, int, bool>) : IEnumerable<TSource> Documentation for this section has not yet been entered.