I was working on a method and then I realized that I had a foreach loop that ran through all checkedItems, instead of running through all unchecked item.
foreach ( object itemChecked in checkedListBox1.CheckedItems)
{(...)}
I was wondering if there is way to do this without changing the code too much. Regards