如何將一個整數數組從一個按鈕傳遞到另一個按鈕?將數組從一個按鈕傳遞到另一個按鈕
下面是詳細信息(下面的代碼是不完全的我原來的代碼,但它說明了我在問什麼):
private void button1_Click(object sender, EventArgs e)
{
int[,] array1 = new int[pictureBox1.Height, pictureBox1.Width];
int[,] array2 = new int[pictureBox1.Height, pictureBox1.Width];
array2 = binary(array1);//binary is a function
}
private void button2_Click(object sender, EventArgs e)
{
//I need array2 here
}
現在我想在BUTTON2訪問數組2。我怎樣才能做到這一點?什麼是最好的解決方案?
在此先感謝。
看看http://en.wikipedia.org/wiki/Magic_pushbutton –