博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C# Collection 排序
阅读量:5304 次
发布时间:2019-06-14

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

Collection<int> aa = new Collection<int>();

aa.Add(1);
aa.Add(2);
aa.Add(3);
aa.Add(1);
int[] arr = new int[aa.Count];
aa.CopyTo(arr, 0);
int[] bb = aa.ToArray();

Array.Sort(bb);

int i = 0;

转载于:https://www.cnblogs.com/qq1151219115/p/9448555.html

你可能感兴趣的文章
thinkphp5的控制器调用自身模块和调用其他模块的方法
查看>>
钻牛角尖の根据时间计算周次
查看>>
bzoj 1029: [JSOI2007]建筑抢修
查看>>
【英语】IT English (随时更新...)
查看>>
php采集
查看>>
8.25 ccpc 比赛总结
查看>>
一台java服务器可以跑多少个线程?
查看>>
Java开发体系
查看>>
LeetCode22 Generate Parentheses
查看>>
面试题----合并两个有序数组
查看>>
VeloView源码编译错误记录——VS manifest
查看>>
161.101 - 2018 Summer Semester: Assignment
查看>>
UML - Basic Notations
查看>>
Decorator Pattern
查看>>
栈———链表实现
查看>>
一个新的开始,fightting!
查看>>
idc交叉引用
查看>>
函数的重载
查看>>
批量将.txt编码格式转化为utf8
查看>>
redis 安装启动及设置密码<windows>
查看>>