ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# ascending(C# 参考) **ascending** 上下文关键字用在查询表达式的 [orderby 子句](https://msdn.microsoft.com/zh-cn/library/bb383982.aspx)中,用于指定从最小到最大的排序顺序。因为 **ascending** 是默认排序顺序,所以您无须指定它。 下面的示例演示 **ascending** 在 [orderby 子句](https://msdn.microsoft.com/zh-cn/library/bb383982.aspx)中的用法。 ``` IEnumerable<string> sortAscendingQuery = from vegetable in vegetables orderby vegetable ascending select vegetable; ``` ## 请参阅 [C# 参考](https://msdn.microsoft.com/zh-cn/library/618ayhy6.aspx) [LINQ 查询表达式(C# 编程指南)](https://msdn.microsoft.com/zh-cn/library/bb397676.aspx) [descending(C# 参考)](https://msdn.microsoft.com/zh-cn/library/cc713622.aspx)