Updated: July 2008
The descending contextual keyword is used in the orderby clause [ http://msdn.microsoft.com/en-us/library/bb383982.aspx ] in query expressions to specify that the sort order is from largest to smallest.
The following example shows the use of descending in an orderby clause [ http://msdn.microsoft.com/en-us/library/bb383982.aspx ] .
IEnumerable<string> sortDescendingQuery = from vegetable in vegetables orderby vegetable descending select vegetable;
Date
History
Reason
July 2008
Added topic.
Information enhancement.