使用checkedListBox的时候出错
我在使用checkedListBox的时候出错,代码如下:错误提示为:“ 无法将带 [ ] 的索引应用于“int”类型的表达式”string ziduan="";
if(this.checkedListBox1.SelectedItems.Count>0)
{
for(int i=0;i<this.checkedListBox1.CheckedItems.Count;i++)
ziduan +=this.checkedListBox1.CheckedItems.Count[i].ToString()+",";
MessageBox.Show(ziduan);
}