частный void Button2_Click (отправитель объекта, System.EventArgs e)
{
строка[] a=новая строка[2];
а[0]="аа";
а[1]="бб";
Application.Add("a",a);//将值赋给 Application["a"]
}
Private void Button3_Click (отправитель объекта, System.EventArgs e)
{
this.ListBox1.Items.Clear();//清除列表里的值
string[] b=(string[])Application["a"];//将值赋给数组 b
для (int i=0;i<b.Length;i++)
{
this.ListBox1.Items.Add(b[i]);
}
}