私は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); }
}
}
}