ascending (C# リファレンス)
ascending コンテキスト キーワードは、クエリ式の orderby 句で使用され、並べ替え順序を昇順にすることを指定します。 ascending は既定の並べ替え順序なので、指定する必要はありません。
使用例
orderby 句での ascending の使用例を次に示します。
IEnumerable<string> sortAscendingQuery =
from vegetable in vegetables
orderby vegetable ascending
select vegetable;