C# -- List Sort 구현하기

C# 2019. 5. 4. 13:56
반응형

List Sort 구현하기



참고 : https://stackoverflow.com/questions/3309188/how-to-sort-a-listt-by-a-property-in-the-object



그냥 간단하게 람다식 사용함. 





// 학생 Name 순 정렬

studentList.Sort((studentA, studentB) => studentA.Name.CompareTo(studentB.Name));  // 람다식으로 정렬 구현함.



// 학생 Age 순 정렬

studentList.Sort((studentA, studentB) => studentA.Age.CompareTo(studentB.Age)); // 람다식으로 정렬 구현함.





< 결과 화면 >





< 소스 >

--












반응형
Posted by 자유프로그램
,