using System;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
String[,,] arr = new String[2, 3, 4] { { { "aaa", "bbb", "ccc", "ddd" }, { "eee", "fff", "ggg", "hhh" }, { "eee", "fff", "ggg", "hhh" } },
{ { "iii", "jjj", "kkk", "lll" }, { "mmm", "nnn", "ooo", "ppp" }, { "qqq", "rrr", "sss", "ttt" } }};
Console.WriteLine("arr[0, 2, 1]: {0}", arr.GetValue(0, 2, 1));
Console.WriteLine("arr[1, 2, 3]: {0}", arr.GetValue(1, 2, 3));
}
}
}
/*
run:
arr[0, 2, 1]: fff
arr[1, 2, 3]: ttt
*/