次の方法で共有


descending (C# リファレンス)

更新 : 2008 年 7 月

descending コンテキスト キーワードは、クエリ式の orderby 句で使用され、並べ替え順序を降順にすることを指定します。

使用例

orderby 句での descending の使用例を次に示します。

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

参照

概念

LINQ クエリ式 (C# プログラミング ガイド)

参照

ascending (C# リファレンス)

その他の技術情報

C# リファレンス

履歴の変更

日付

履歴

理由

2008 年 7 月

トピックを追加

情報の拡充