博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SortedList类中的数据如何按我自定义地排序
阅读量:6720 次
发布时间:2019-06-25

本文共 891 字,大约阅读时间需要 2 分钟。

初始化 SortedList

public SortedList(    int capacity,    IComparer
comparer)

参数讲解:

capacity类型:System.Int32

SortedList

SortedList sList = new SortedList(new MyComparer());            UserModel UserModel1 = new UserModel();            UserModel1.Name = "test1";            UserModel1.Age = 20;            UserModel UserModel2 = new UserModel();            UserModel2.Name = "test3";            UserModel2.Age = 1;            UserModel UserModel3 = new UserModel();            UserModel3.Name = "test2";            UserModel3.Age = 2;            sList.Add("21", UserModel1);            sList.Add("51", UserModel2);            sList.Add("11", UserModel3);            _cache.Set
("User1", sList); foreach (DictionaryEntry element in sList) { string name = (string)element.Key; int age = (int)element.Value; }

转载地址:http://kgjmo.baihongyu.com/

你可能感兴趣的文章
对.NET Framework代码进行托管的最常见形式
查看>>
bzoj 2705: [SDOI2012]Longge的问题
查看>>
Eclipse中常用的快捷键
查看>>
华为交换机部分进程说明 dis cpu-usage
查看>>
Linux命令(19):ln命令
查看>>
电脑用久了就会变慢,教你补救的方法
查看>>
我的友情链接
查看>>
Python里的OS模块常用函数说明
查看>>
sql:拼接字符串、截取字符串、取字符串长度
查看>>
mysql 主从复制
查看>>
php动态扩展bcmath与sockets库模块
查看>>
记录quick cocos2d-x3.2升级至cocos2d-x3.8
查看>>
2012.5.22
查看>>
洛谷——P1265 公路修建
查看>>
MySQL数据库视图
查看>>
新年倾力奉献---cocos2d-x从零入门
查看>>
Leave the world behind,高山玫瑰不让须眉
查看>>
Redhat 与Windows下的远程桌面
查看>>
10天学通Android开发(8)-多媒体
查看>>
Zabbix监控屏幕全屏显示多个监控项
查看>>