■ List<T> 클래스에서 데이터를 지우는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
using System; using System.Collections.Generic; #region 리스트 데이터 지우기 - ClearListData<TItem>(sourceList) /// <summary> /// 리스트 데이터 지우기 /// </summary> /// <typeparam name="TItem">항목 타입</typeparam> /// <param name="sourceList">소스 리스트</param> public void ClearListData<TItem>(List<TItem> sourceList) where TItem : IDisposable { if(sourceList == null) { return; } while(sourceList.Count > 0) { int lastIndex = sourceList.Count - 1; TItem item = sourceList[lastIndex]; sourceList.RemoveAt(lastIndex); if(item != null) { (item as IDisposable).Dispose(); } } } #endregion |