C# List<string>
privateList<string>stnum=newList<string>();while(myreader.Read()){comboBox1.Items.Add...
private List<string> stnum = new List<string>();
while (myreader.Read())
{
comboBox1.Items.Add(myreader[0]);
stnum.Add(myreader[1].ToString());
i++;
}
stnum[comboBox1.SelectedIndex];
为什么会显示索引超出数组界限 展开
while (myreader.Read())
{
comboBox1.Items.Add(myreader[0]);
stnum.Add(myreader[1].ToString());
i++;
}
stnum[comboBox1.SelectedIndex];
为什么会显示索引超出数组界限 展开
1个回答
展开全部
如果你说的是stnum[comboBox1.SelectedIndex];这里越界,有可能是在窗体Load的时候就触发了事件,此时列表还是空的,SelectedIndex有可能是-1。解决方法在使用前先判断comboBox1.SelectedIndex>=0。
追问
老哥,刚我调试了一下显示错误是在这
stnum.Add(myreader[1].ToString());
在这索引超出界限
mysql语句是select userstname userstnum from s_section
myreader[1]改成myreader[0]就没毛病
找到毛病了 少了一个‘,’ 无语
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询