次の方法で共有


ascending (C# リファレンス)

更新 : 2008 年 7 月

ascending コンテキスト キーワードは、クエリ式の orderby 句で使用され、並べ替え順序を昇順にすることを指定します。ascending は既定の並べ替え順序なので、指定する必要はありません。

使用例

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

IEnumerable<string> sortAscendingQuery =
    from vegetable in vegetables
    orderby vegetable ascending
    select vegetable;

参照

概念

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

参照

descending (C# リファレンス)

その他の技術情報

C# リファレンス

履歴の変更

日付

履歴

理由

2008 年 7 月

トピックを追加

情報の拡充