using System;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
int[,] arr2d = new int[,]
{
{123, 87},
{55, 13},
{3, 98873},
};
PrintArray(arr2d);
}
static void PrintArray(int[,] arr2d)
{
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:
123 87
55 13
3 98873
*/