ParallelEnumerable::GroupBy Method
Groups in parallel the elements of a sequence according to a key selector function.
Assembly: System.Core (in System.Core.dll)
| Name | Description | |
|---|---|---|
![]() ![]() | GroupBy<TSource, TKey>(ParallelQuery<TSource>^, Func<TSource, TKey>^) | Groups in parallel the elements of a sequence according to a specified key selector function. |
![]() ![]() | GroupBy<TSource, TKey>(ParallelQuery<TSource>^, Func<TSource, TKey>^, IEqualityComparer<TKey>^) | Groups in parallel the elements of a sequence according to a specified key selector function and compares the keys by using a specified IComparer<T>. |
![]() ![]() | GroupBy<TSource, TKey, TElement>(ParallelQuery<TSource>^, Func<TSource, TKey>^, Func<TSource, TElement>^) | Groups in parallel the elements of a sequence according to a specified key selector function and projects the elements for each group by using a specified function. |
![]() ![]() | GroupBy<TSource, TKey, TElement>(ParallelQuery<TSource>^, Func<TSource, TKey>^, Func<TSource, TElement>^, IEqualityComparer<TKey>^) | Groups in parallel the elements of a sequence according to a key selector function. The keys are compared by using a comparer and each group's elements are projected by using a specified function. |
![]() ![]() | GroupBy<TSource, TKey, TResult>(ParallelQuery<TSource>^, Func<TSource, TKey>^, Func<TKey, IEnumerable<TSource>^, TResult>^) | Groups in parallel the elements of a sequence according to a specified key selector function and creates a result value from each group and its key. |
![]() ![]() | GroupBy<TSource, TKey, TResult>(ParallelQuery<TSource>^, Func<TSource, TKey>^, Func<TKey, IEnumerable<TSource>^, TResult>^, IEqualityComparer<TKey>^) | Groups in parallel the elements of a sequence according to a specified key selector function and creates a result value from each group and its key. The keys are compared by using a specified comparer. |
![]() ![]() | GroupBy<TSource, TKey, TElement, TResult>(ParallelQuery<TSource>^, Func<TSource, TKey>^, Func<TSource, TElement>^, Func<TKey, IEnumerable<TElement>^, TResult>^) | Groups in parallel the elements of a sequence according to a specified key selector function and creates a result value from each group and its key. The elements of each group are projected by using a specified function. |
![]() ![]() | GroupBy<TSource, TKey, TElement, TResult>(ParallelQuery<TSource>^, Func<TSource, TKey>^, Func<TSource, TElement>^, Func<TKey, IEnumerable<TElement>^, TResult>^, IEqualityComparer<TKey>^) | Groups the elements of a sequence according to a specified key selector function and creates a result value from each group and its key. Key values are compared by using a specified comparer, and the elements of each group are projected by using a specified function. |

