Sort a Custom Class List<T>
Programming/C# / 2014. 9. 29. 00:59
List<cTag> week = new List<cTag>();
// add some stuff to the list
// now sort
week.Sort(delegate(cTag c1, cTag c2) { return c1.date.CompareTo(c2.age); });
참조 : http://stackoverflow.com/questions/3163922/sort-a-custom-class-listt
반응형
'Programming > C#' 카테고리의 다른 글
[오류] 'Microsoft.ACE.OLEDB.12.0' 공급자는 로컬 컴퓨터에 등록할 수 없습니다. (0) | 2015.02.12 |
---|---|
Sorting Arrays (0) | 2014.11.21 |
Sheet Name에 만들지도 않은 '_xlnm#_FilterDatabase'이 포함된 Sheet가 보일 때.. (0) | 2014.09.17 |
Google Protocol Buffer 사용해보기 with C# (0) | 2014.09.16 |
Calendar Class[MSDN] (0) | 2014.09.01 |