using System;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
int[,] arr2d = new int[9, 13];
Console.WriteLine(arr2d.GetLength(0)); // 9
Console.WriteLine(arr2d.GetLength(1)); // 9
Console.WriteLine(arr2d.Length); // 117
}
}
}
/*
run:
9
13
117
*/