ascending (C# リファレンス)

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

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

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

関連項目