码迷,mamicode.com
首页 > 其他好文 > 详细

C# Sort排序

时间:2014-09-27 19:35:10      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   for   sp   div   on   

#region实现IComparable的排序
class UserInfo:IComparable<UserInfo>
    {
        public int ID { get; set; }
        public int Age { get; set; }
        public string Name { get; set; }

        public int CompareTo(UserInfo other)
        {
            if (this.Age > other.Age) return 1;
            return -1;
        }
    }

//调用
 List<UserInfo> lst = new List<UserInfo>(){
                new UserInfo(){ID=1,Age=19,Name="张三"},
                new UserInfo(){ID=2,Age=17,Name="李四"},
                new UserInfo(){ID=3,Age=20,Name="王五"}
            };
            lst.Sort();
            for (int i = 0; i < lst.Count; i++)
            {
                Console.Write(lst[i].Name+":"+ lst[i].Age+"<");
            }
#endregion           

#region 实现IComparer的Sort排序
class UserInfo_SortByID:IComparer<UserInfo>
    {

        public int Compare(UserInfo x, UserInfo y)
        {
            if (x.ID < y.ID) return 1;
            return -1;
        }
    }


            List<UserInfo> lst = new List<UserInfo>(){
                new UserInfo(){ID=1,Age=19,Name="张三"},
                new UserInfo(){ID=2,Age=17,Name="李四"},
                new UserInfo(){ID=3,Age=20,Name="王五"}
            };
            lst.Sort(new UserInfo_SortByID());
            for (int i = 0; i < lst.Count; i++)
            {
                Console.Write(lst[i].Name+":"+ lst[i].Age+"<");
            }

#endregion
 

 

C# Sort排序

标签:style   blog   color   io   ar   for   sp   div   on   

原文地址:http://www.cnblogs.com/Smile-Jie/p/3996510.html

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