using System;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
int[,] arr2d = new int[3, 2];
arr2d[0, 0] = 122;
arr2d[1, 1] = 222;
arr2d[2, 0] = 333;
int ub0 = arr2d.GetUpperBound(0);
int ub1 = arr2d.GetUpperBound(1);
for (int i = 0; i <= ub0; i++)
{
for (int j = 0; j <= ub1; j++)
{
Console.Write(arr2d[i, j] + " ");
}
Console.WriteLine();
}
}
}
}
/*
run:
122 0
0 222
333 0
*/