for(int i = 0;i < checkedListBox1->Items->Count;i++){
checkedListBox1->SetItemChecked(i,true);
}
for(int i = 0;i < checkedListBox1->Items->Count;i++){
checkedListBox1->SetItemChecked(i,false);
}
checkeditems에 get enumerator가 있길레 Ienumerator로 어떻게 해볼려고 했는데,
listbox의 items형으로 반환받는 법을 모르겠다.
items[int] 밖에 없다 enumerator로는 참조불가.
그리고 기본 제공되는 enumerator형으로는 chekeditems의 string밖에 참조가 안되서...
그래서 그냥 위와같이함.


rss