List<T>集合排序与Dictionary<int,string>排序

List<Student> students = new List<Student>();
List<Student> sortedStudents = students.OrderBy(s => s.num).ToList();


或者用sort方法

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            List<stu> s = new List<stu>();
            s.Add(new stu("1", DateTime.Now));
            s.Add(new stu("2", DateTime.Today));
            s.Add(new stu("3", DateTime.Today.AddDays(1)));
            //s=s.OrderBy(b=>b.dt).ToList();
            s.Sort(CompareByFromTime);
            foreach (var d in s)
	        {
		        Console.WriteLine(d.name+"    "+d.dt);
	        }
            Console.Read();
        }
        public static int CompareByFromTime(stu x, stu y)
        {
            if (x == null)
            {
                if (y == null)
                {
                    return 0;
                }
                return 1;
            }
            if (y == null)
            {
                return -1;
            }
            int retval = y.dt.CompareTo(x.dt);
            return retval;
        }
        
    }
        
    public class stu
    {
        public string name { get; set; }
        public DateTime dt { get; set; }
        public stu(string name, DateTime dt)
        {
            this.name = name;
            this.dt = dt;
        }
    }
    
}
Dictionary排序
<span style="white-space:pre">	</span>    Dictionary<int, string> dd = new Dictionary<int, string>();
            dd.Add(1, "111");
            dd.Add(3, "333");
            dd.Add(2, "222");
            dd = dd.OrderBy(d => d.Key).ToDictionary(k => k.Key, v => v.Value);
            foreach (var d in dd)
            {
                Console.WriteLine(d.Key+"   "+d.Value);
            }
            Console.Read();
或者可以这样 var dd1 = from d in dd orderby d.key ascending/descending select d   //这样写要新建一个对象  不是很爽

 



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值