using System;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
String[,,] arr3D = new String[6, 5, 4];
arr3D.SetValue("one-two-three", 1, 2, 3);
Console.WriteLine("arr3D[1,2,3]: {0}", arr3D.GetValue(1, 2, 3));
}
}
}
/*
run:
arr3D[1,2,3]: one-two-three
*/