'宣言
<System.Runtime.CompilerServices.ExtensionAttribute()> Public Overloads Shared Function GroupBy (Of TSource,TKey)( _ ByVal source As IIndexedSource(Of TSource), _ ByVal keySelector As System.Linq.Expressions.Expression(Of Func(Of TSource,TKey)) _ ) As IIndexedSource(Of IGrouping(Of TKey,TSource))
[System.Runtime.CompilerServices.Extension()] public static IIndexedSource<IGrouping<TKey,TSource>> GroupBy<TSource,TKey>( IIndexedSource<TSource> source, System.Linq.Expressions.Expression<Func<TSource,TKey>> keySelector )
パラメータ
- source
- 要素をグループ化する C1.LiveLinq.Indexing.IIndexedSource<T>。
- keySelector
- 各要素のキーを抽出する関数。
型パラメータ
- TSource
- source内の要素の型。
- TKey
- keySelectorによって返されるキーの型。
戻り値の型
それぞれがオブジェクトのシーケンスとキーを含む System.Linq.IGrouping`2オブジェクトのコレクション。