static void PrintArray(int[,] w)
{
string output = "";
for (int i = 0; i < w.GetLength(0); i++)
{
for (int j = 0; j < w.GetLength(1); j++)
output += string.Format("Element({0},{1})={2}", i, j, w[i, j]) + "\t";
output += "\n";
}
MessageBox.Show(output);
}
最主要的是两个for后面括号里的内容,以及这段代码的作用。