C# List 정렬 ,검색, 삭제
1.리스트 구조로 사용할 클래스 를 작성하고 public class BookListpage { public int m_pageNum {get; set;} public bool m_mine {get; set;} public string m_name {get; set;} public string m_money {get; set;} public string m_rank {get; set;} } 2. 리스트 생성한뒤 public List dealerList; dealerList = new List(); 3.값을 넣고 BookListpage tmpPage = new BookListpage(); //값채우기 dealerList.add(tmpPage ); 4.델리게이트 이용하여 정렬 dealerList.Sort( d..
2015.05.06