I have a checkedlistbox in my form and want to access name of selected item using index, how to do this. For example I want to access selected item of index 2, how I can do that. Please help me, I will be very thankful.
if (CheckedListBox1.SelectedIndex == 1) { MessageBox.Show(CheckedListBox1.SelectedItem.ToString()); }