为什么我的checkedListBox在C#中抛出NullReferenceException?

时间:2018-06-14 21:45:01

标签: c# nullreferenceexception checkedlistbox

我正在尝试用txt文件填充我的checkedListBox。

这是我的代码:

public Form1()
{
   StreamReader sr1 = new StreamReader(allatPath, Encoding.Default);
   while(!sr1.EndOfStream)
   {
       allat = new Allat(sr1.ReadLine(), sr1.ReadLine(), Convert.ToInt32(sr1.ReadLine()), sr1.ReadLine());
       allatok.Add(allat);
       checkedListBox1.Items.Add(allat.Nev);
   }

   InitializeComponent();
}

我收到以下错误:

System.NullReferenceException:'对象引用未设置为对象的实例。'

checkedListBox1为空。

0 个答案:

没有答案