zoukankan      html  css  js  c++  java
  • Dictionary 排序 上海

    使用List对其进行排序

    using System;
    using System.Collections.Generic;
    using System.Text;


    namespace ConsoleApplication4
    {
        class Program
        {
            static void Main(string[] args)
            {

                Dictionary<string, string> dic = new Dictionary<string, string>();

                dic.Add("Arraymin", "c:\\demo\\min.xsl");

                dic.Add("Arraymax", "c:\\demo\\max.xsl");


                dic.Add("Arrayr", "c:\\demo\\r.xsl");


                List<KeyValuePair<string, string>> myList = new List<KeyValuePair<string, string>>(dic);

                myList.Sort(delegate(KeyValuePair<string, string> s1, KeyValuePair<string, string> s2)
                    {

                        return s1.Value.CompareTo(s2.Value);

                    });

                dic.Clear();

                foreach (KeyValuePair<string, string> pair in myList)
                {

                    dic.Add(pair.Key, pair.Value);

                }


                foreach (string key in dic.Keys)
                {

                    Console.WriteLine(dic[key]);

                }

                Console.ReadKey();
            }
          
        }
    }

    C#3.0 Lambda表达式 (VS2008)的实现方法:

                Dictionary<string, string> dic = new Dictionary<string, string>();

               dic.Add("Arraymin", "c:\\demo\\min.xsl");

                dic.Add("Arraymax", "c:\\demo\\max.xsl");


                dic.Add("Arrayr", "c:\\demo\\r.xsl");

     

                var list = dic.OrderBy(s => s.Value);

     

                foreach (var s in list)

                {

                    Console.WriteLine(dic[key]);            }

    C#3.0 Linq (VS2008)的实现方法:

                Dictionary<string, string> dic = new Dictionary<string, string>();

                dic.Add("Arraymin", "c:\\demo\\min.xsl");

                dic.Add("Arraymax", "c:\\demo\\max.xsl");


                dic.Add("Arrayr", "c:\\demo\\r.xsl");

     

                var dicSort = from d in dic

                              orderby d.Value

                              ascending

                              select d;

     

                foreach (string key in dic.Keys)

                {

                  Console.WriteLine(dic[key]);

                }

  • 相关阅读:
    Git failed with a fatal error. Authentication failed
    HttpClient 获取json,即使返回状态不成功也返回json
    win10恢复Windows Media Player
    .NET Core部署到linux(CentOS)最全解决方案
    EasyNetQ 相关问题和解决方法
    RabbitMQ And EasyNetQ
    打爆你的 CPU
    通过代码实现 OutOfMemory
    如何写一段死锁代码
    docker 容器(container)使用ssh服务登录一段时间无操作后自动断开问题解决
  • 原文地址:https://www.cnblogs.com/luozhai714/p/2340208.html
Copyright © 2011-2022 走看看