<pre> public void FillMatrix (string [,] v) { for (int i = 2; i <= 4; i+=2) { for (int j = 2; j <= 4; j++) { lblFute.Text = "Write the number on index " + i + " " + j; v[i, j] = txtVlera.Text; if (j == 3 ) { lblFute.Text = "Write the number on index " + j + " " + i; v[j, i] = txtVlera.Text; } } }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)