更新: 2008 年 7 月

ascending 上下文关键字用在查询表达式的 orderby 子句中,用于指定从最小到最大的排序顺序。因为 ascending 是默认排序顺序,所以您无须指定它。

示例

下面的示例演示 ascendingorderby 子句中的用法。

C# 复制代码
IEnumerable<string> sortAscendingQuery =
    from vegetable in vegetables
    orderby vegetable ascending
    select vegetable;

请参见

修订记录

日期

修订记录

原因

2008 年 7 月

新增主题。

信息补充。