실제 데이터 타입은 보통 컴포넌트 타입을 따라가거나 Object 형식으로 되어있음.checkedListBox1.CheckedItems : CheckedListBox.CheckedItemCollectionlistBox1.Items : ListBox.ObjectCollectionlistBox1.SelectedItems : ListBox.SelectedObjectCollection 원하는 ObjectCollection을 .OfType().ToArray()를 이용하여string array로 변경할 수 있다. 12345678910string[] checkBoxCheckedData = checkedListBox1.CheckedItems.OfTypestring>().ToArray();//checkBoxCheckedD..