descending (C# Reference)
The descending
contextual keyword is used in the orderby clause in query expressions to specify that the sort order is from largest to smallest.
Example
The following example shows the use of descending
in an orderby clause.
IEnumerable<string> sortDescendingQuery =
from vegetable in vegetables
orderby vegetable descending
select vegetable;
See also
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.