'宣言
<System.Runtime.CompilerServices.ExtensionAttribute()> Public Shared Function OrderByDescending (Of T,TKey)( _ ByVal source As IIndexedSource(Of T), _ ByVal keySelector As System.Linq.Expressions.Expression(Of Func(Of T,TKey)) _ ) As Ordering(Of T)
[System.Runtime.CompilerServices.Extension()] public static Ordering<T> OrderByDescending<T,TKey>( IIndexedSource<T> source, System.Linq.Expressions.Expression<Func<T,TKey>> keySelector )
パラメータ
- source
- 並べる値のコレクション。
- keySelector
- 要素のキーを抽出する関数。
型パラメータ
- T
- source内の要素の型。
- TKey
- keySelectorによって返されるキーの型。
戻り値の型
要素がキーに従って降順でソートされる C1.LiveLinq.Indexing.IIndexedSource<T>。