Dictionary<Key, Value> 형태로 쓰게되는데


Key값으로 Loop(반복문)를 돌리고


해당Key만 삭제하면 된다.



foreach(string sKey in Dictionary.Keys.ToList())

{

      // Dictionary.Keys[sKey] == value;  <- Key로 찾은 Value

      Dictionary.Remove(sKey);           <- Key를 이용해서 Value 삭제

}



'Programming > C#' 카테고리의 다른 글

Virtual, Abstract, Interface  (0) 2017.11.06
DataSource Binding 방법  (0) 2017.10.31
캐스팅 as, is  (0) 2017.06.30
DataGridView 스크롤시 열 고정, 구분자  (0) 2016.12.22
Enum에서 정한 Name을 index로 가져오기  (0) 2016.12.22
블로그 이미지

SherryBirkin

,