[]
Performs a subsequent ordering of the elements in a collection in descending order according to a key.
public Ordering<T> ThenByDescending<TKey>(Expression<Func<T, TKey>> keySelector)
| Type | Name | Description |
|---|---|---|
| Expression<Func<T, TKey>> | keySelector | A function to extract a key from each element. |
| Type | Description |
|---|---|
| Ordering<T> | A collection whose elements are sorted in descending order according to a key. |
| Name | Description |
|---|---|
| TKey | The type of the key returned by keySelector. |