[求助]不明白n = listBox1.FindStringExact(findstr);
private void button1_Click(object sender, EventArgs e){
string findstr; int n;
findstr = textBox1.Text;
n = listBox1.FindStringExact(findstr);
if (n >= 0)
listBox1.SetSelected(n, true);
else
MessageBox.Show("无此选项","找不到提示框");
}
1 不明白n = listBox1.FindStringExact(findstr);的道理。findstr是字符串,n是整型,不知道其中的转换道理。
2 为何时n >= 0表示找到。
大家帮小弟解释一下吧