✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що буде результатом виконання фрагмента програми
int[,] squareArray1 = new int[2,3];
int[,] squareArray2 = {{1, 2, 3}, {4, 5, 6}};
for(int i = 0; i < squareArray2.GetLength(0); i++)
{
for (int j = 0; j < squareArray2.GetLength(1); j++)
{
Console.Write(squareArray2[i,j]);
}
}