0

我有一些公共数组变量:

double[,] matrikkookurensisub1_0 = new double[256, 256]; 
double[,] matrikkookurensisub1_45 = new double[256, 256]; 
double[,] matrikkookurensisub1_90 = new double[256, 256]; 
double[,] matrikkookurensisub1_135 = new double[256, 256];

我想插入一个textBox值作为我的公共数组变量的名称,这是我在 buttonClick 中的代码:

        //mks1_0 FIX!                
        int a = 0, b = 45, c = 90, d = 135;            
        textBox33.Text = textBox33.Text + a;
        for (int y = 0; y < ukuran1; y++) //*pada catatan langkah 3.
            for (int x = 0; x < ukuran1; x++)
            {
                for (int j = 0; j < 64; j++)
                    for (int i = 0; i < 63; i++) 
                    {                            
                        if (dataSubcitra1[i, j] == x && dataSubcitra1[i + 1, j] == y)
                        {
                            matrikkookurensisub1_0[x, y]++;
                        }
                    }
            }

我的默认值为,但现在我的textBox33值为。matrikkookurensisub1_textBox33.Text = textBox33.Text + a;textBox33matrikkookurensisub1_0

看看我的 if 语句:

if (dataSubcitra1[i, j] == x && dataSubcitra1[i + 1, j] == y)
{
     matrikkookurensisub1_0[x, y]++;
}

我想创建一个 textBox33 值来调用它=>“matrikkookurensisub1_0”。

4

0 回答 0