私人無效Button2_Click(物件發送者,System.EventArgs e)
{
字串[] a=新字串[2];
a[0]=“aa”;
a[1]=“bb”;
Application.Add("a",a);//將值賦給Application["a"]
}
private void Button3_Click(物件發送者, System.EventArgs e)
{
this.ListBox1.Items.Clear();//清除清單裡的值
string[] b=(string[])Application["a"];//將價值賦給記憶體b
for (int i=0;i<b.Length;i++)
{
this.ListBox1.Items.Add(b[i]);
}
}