Breyta

Deila með


descending (C# Reference)

Use the descending contextual keyword in the orderby clause of query expressions to specify that the sort order is from largest to smallest.

The C# language reference documents the most recently released version of the C# language. It also contains initial documentation for features in public previews for the upcoming language release.

The documentation identifies any feature first introduced in the last three versions of the language or in current public previews.

Tip

To find when a feature was first introduced in C#, consult the article on the C# language version history.

The following example shows how to use descending in an orderby clause.

IEnumerable<string> sortDescendingQuery =
    from vegetable in vegetables
    orderby vegetable descending
    select vegetable;

See also