Share via

Facebook x.com LinkedIn Email

descending (C# Reference)

  • 2013年02月15日

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

Concepts

LINQ Query Expressions (C# Programming Guide)

Reference

ascending (C# Reference)

Other Resources

C# Reference

Change History

Date

History

Reason

July 2008

Added topic.

Information enhancement.