ぼくの
MessageBox.Show(listbox.Items[0].ToString());
です
"abber"
「abber」でリストボックスアイテムインデックス0を見つけるにはどうすればよいですか?
listbox.Items.IndexOf("abber")
を使用
あれは:
int curIndex = listbox.Items.IndexOf("abber");
if(curIndex >= 0)
{
MessageBox.Show(listbox.Items[curIndex].ToString());
}
int index = listBox1.Items.IndexOf("Specify string here");