当前位置 : 主页 > 网络编程 > net编程 >

c# .net 根据参数名称的ASCII码表的顺序排序,使用SortedDictionary字典

来源:互联网 收集:自由互联 发布时间:2023-09-07
SortedDictionary没有按照插入顺序排列 而是一种string 排序 ,根据key值进行 计算规则:数字小写字母大写字母 SortedDictionarystring, object m_values = new SortedDictionarystring, object(); m_values.Add("b",1)

SortedDictionary没有按照插入顺序排列 而是一种string 排序 ,根据key值进行

计算规则:数字>小写字母>大写字母

SortedDictionary<string, object> m_values = new SortedDictionary<string, object>();
m_values.Add("b",1);
m_values.Add("d", 2);
m_values.Add("a", 3);
m_values.Add("c", 4);
foreach (var item in m_values)
{
Console.WriteLine($"{item.Key}={item.Value}");
}
a=3
b=1
c=4
d=2


【本文转自:香港高防服务器 http://www.558idc.com/hkgf.html 复制请保留原URL】
上一篇:c# 如何让程序抛异常,异常详解
下一篇:没有了
网友评论