相关疑难解决方法(0)

C#List <>按x然后y排序

List <> OrderBy Alphabetical Order类似,我们希望按一个元素排序,然后按另一个元素排序.我们希望实现功能相当于

SELECT * from Table ORDER BY x, y  
Run Code Online (Sandbox Code Playgroud)

我们有一个包含许多排序函数的类,我们没有问题按一个元素排序.
例如:

public class MyClass {
    public int x;
    public int y;
}  

List<MyClass> MyList;

public void SortList() {
    MyList.Sort( MySortingFunction );
}
Run Code Online (Sandbox Code Playgroud)

我们在列表中有以下内容:

Unsorted     Sorted(x)     Desired
---------    ---------    ---------
ID   x  y    ID   x  y    ID   x  y
[0]  0  1    [2]  0  2    [0]  0  1
[1]  1  1    [0]  0  1    [2]  0  2
[2]  0  2    [1]  1  1    [1]  1 …
Run Code Online (Sandbox Code Playgroud)

.net c# sorting

87
推荐指数
4
解决办法
15万
查看次数

标签 统计

.net ×1

c# ×1

sorting ×1