CAD二次开发学习笔记(C#.NET)之 二维数组某一列排序

自己写的二维数据冒泡排序算法,待排序的哪一列需要为数字类型(String类型的数字也可)
#region 二维数组排序
public static string[,] ArrSort(this string[,] sourceArr, int sortIndex, string sortType)
{
int row = sourceArr.GetLength(0);
int col = sourceArr.GetLength(1);
string[] tempArr = new string[col];
if (sortType == "降序")
{
for (int i = row - 1; i >= 0; i--)
{
for (int j = 0; j <= i - 1; j++)

CAD二次开发学习笔记(C#.NET)之 二维数组某一列排序最先出现在Python成神之路

版权声明:
作者:siwei
链接:https://www.techfm.club/p/11595.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>