Dictionary<string, string> dic1 = new Dictionary<string, string>();
dic1.Add("ddd","123");
dic1.Add("aaa", "123");
dic1.Add("ccc", "123");
dic1.Add("fff", "123");
dic1.Add("eee", "123");
dic1.Add("bbb", "123");
Dictionary<string, string> dic1Asc = dic1.OrderBy(o => o.Key).ToDictionary(o => o.Key, p => p.Value);
Dictionary<string, string> dic1desc = dic1.OrderByDescending(o => o.Key).ToDictionary(o => o.Key, p => p.Value);
Dictionary<string, string> dic1Asc1
= (from d in dic1
orderby d.Key ascending
select d).ToDictionary(k => k.Key, v => v.Value);
Dictionary<string, string> dic1desc2
= (from d in dic1
orderby d.Key descending
select d).ToDictionary(k => k.Key, v => v.Value);
List<string> list = new List<string>();
list.Add("aaa");
list.Add("ddd");
list.Add("bbb");
list.Add("ccc");
list.Add("bbb");
var ascList = list.OrderBy(o => o);
var descList = list.OrderByDescending(o => o);
var ascList1 = (from l in list
orderby l ascending
select l).ToList();
var descList2 = (from l in list
orderby l descending
select l).ToList();
string str = "";
C# Dictionary(字典)的键、值排序
原创
©著作权归作者所有:来自51CTO博客作者xxj_jing的原创作品,请联系作者获取转载授权,否则将追究法律责任
下一篇:企业库5.0——缓存应用
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
C# Dictionary 字典
说明 必须包含名空间System.Collection.Generic Dictionary里面
键值对 反序列化 自定义类型 微信 取值 -
【C#】字典集合Dictionary
【代码】【C#】字典集合Dictionary。
c# 开发语言 System Linq 代码示例 -
C# 字典 Dictionary 的用法
C# 字典 Dictionary 的用法
c# 字典 Dictionary Text System -
【C# 基础精讲】字典(Dictionary)的使用
是C#中非常常用的泛型集合类,用于存储键值对的数据结构。本文
c# 数据库 服务器 原力计划 键值对 -
C#基础 Dictionary Keys 键的遍历与输出
.NET Framework : 4.7. gi...
c# microsoft github Core