c# 取 list前100条数据

时间:2015-09-24 22:26:33   收藏:0   阅读:1469

【问】

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();
评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!