标签: c# .net
我正在尝试将文本文件中的文本行从文本文件加载到列表框中 我为此使用了此代码:
string[] lines = File.ReadAllLines(sPath); listBox1.Items.AddRange(lines);
但是编译器给我一个错误 enter image description here
答案 0 :(得分:1)
简单的答案是sPath为null,无论您在哪里设置它,请确保它具有值或代码可以运行。
sPath
还请学习使用调试器来帮助您确定问题和解决方案
Navigate Code with the Visual Studio Debugger