首页 > 编程语言 > 详细

c#字典排序

时间:2017-11-27 23:14:11      阅读:436      评论:0      收藏:0      [点我收藏+]
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Dic排序
{
    class Program
    {
        static void Main(string[] args)
        {
            Dictionary<string, int> dic = new Dictionary<string, int>();
            dic.Add("q", 3);
            dic.Add("d", 9);
            dic.Add("f", 5);
            dic.Add("g", 6);
            dic.Add("l", 1);
            dic.Add("h", 0);
            //ascending升序
            //descending降序
            var dicSort = from objDic in dic orderby objDic.Value ascending select objDic;


            //int num = dicSort.Count();集合的个数
            //int a = dicSort.ElementAt(0).Value;指定索引0的值
            //也可以用for循环
            foreach (KeyValuePair<string, int> kvp in dicSort)
            {
                Console.WriteLine(kvp.Key + "" + kvp.Value);
            }

            Console.ReadKey();
        }
    }

 

c#字典排序

原文:http://www.cnblogs.com/sanyejun/p/7906303.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!