我是 C# 新手,我正在尝试在 C# 中进行探索,但是我尝试在列表框中添加一个列表。
我遇到的错误是:Object reference not set to an instance of an object.
知道如何解决这个问题吗?
namespace WindowsFormsApplication
{
public partial class Form1 : Form
{
something a = something iets();
public Form1()
{
InitializeComponent();
}
// part1
class something {
public List<string> testing { get ; set; }
}
// part2
private void button1_Click(object sender, EventArgs e)
{
a.testing.Add("programming");
a.testing.Add("over");
a.testing.Add("something");
foreach (string i in a.testing)
{ listBox1.Items.Add(i); }
}
}
}