-
방법1.
비교함수 만들기.
static int f(x,y) { ... }; // ... var vs = new List(); vs.Sort(f);
방법2
내장된 CompareTo활용.
class C1: { int getV1() {...} int getV2() {...} } //... var vs = new List(); //... vs.Sort( (x,y)=>x.getV1().CompareTo(y.getV2()) );
'C#(Csharp)' 카테고리의 다른 글
SortedList (0) 2021.08.08 Struct and Class (0) 2021.07.31 실수형 소수점 자리 제한하여 출력(float, decimal) (0) 2021.07.27 Formating strings (0) 2021.07.27 SortedSet (0) 2021.07.24 HashSet (0) 2021.07.24 Csc Ex (0) 2021.06.23 Csc Microsoft (R) Visual C# Compiler (0) 2021.06.23