码迷,mamicode.com
首页 > 编程语言 > 详细

List 排序

时间:2015-07-22 18:02:49      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:

1:sort 

List<int> nList= new List<int>(); 
new List<string>(sortStrings).ForEach(e => { nList.Add(int.Parse(e)); });
Item.Sort( (a, b) => { return nList.FindIndex(s => s == a.AttributeId) - nList.FindIndex(s => s == b.AttributeId); });

 

 2:orderby ,OrderByDescending

return list.OrderByDescending(p =>
                {
                    if (true)
                    {
                       return -1;
                    }
                    return 0;
                }).ToList();

 

List 排序

标签:

原文地址:http://www.cnblogs.com/sheseido/p/4667958.html

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