I wante to do something like this.
String s = "";
foreach (var item in checkedListBox1.Items)
{
s = checkedListBox1.Items(item).tostring;
// do something with the string
}
I want to have the string of the item which is in the list box.
How can I get it runnig?