gpt4 book ai didi

C# ListBox Selected Item Null异常

转载 作者:行者123 更新时间:2023-11-30 18:58:59 25 4
gpt4 key购买 nike

用户可以按如下方式单击列表框中的项目:

private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
{
textBox2.Clear();
listBox2.Items.Clear();

string[] p =
Directory.GetFiles(
textBoxDir.Text,
listBox1.SelectedItem.ToString(),
SearchOption.AllDirectories);

foreach (string open in p)
......
}

一切都很好。但是,如果用户单击 ListBox 中的空白区域,则会显示以下错误:

System.NullReferenceException

这是因为这行代码:

string[] p = 
Directory.GetFiles(
textBoxDir.Text,
listBox1.SelectedItem.ToString(),
SearchOption.AllDirectories);

有没有人有巧妙的解决方法?或者建议我的代码的替代方案?

最佳答案

解决方法是检查空值并提前退出。

if (listBox1.SelectedItem == null)
{
return;
}

这避免了其他答案引入的嵌套,嵌套会降低代码的可读性。

关于C# ListBox Selected Item Null异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16254984/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com