码迷,mamicode.com
首页 > Windows程序 > 详细

c# 取 list前100条数据

时间:2015-09-24 22:26:33      阅读:1469      评论:0      收藏:0      [点我收藏+]

标签:

【问】

List<KeyWord> sortedList = (from a in keyWordList orderby a.Total descending select a).ToList();

这是将keyWordList 按照 Total 降序排列,我现在想用一种方法取它的降序排列的前100个,能用一条语句实现吗

【答】
(from a in keyWordList orderby a.Total descending select a).Take(30).ToList();

c# 取 list前100条数据

标签:

原文地址:http://www.cnblogs.com/lj821022/p/4836554.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!