[Solved] How do i build array of regions? [closed]


// Three-dimensional array. 
int[, ,] array3D = new int[,,] { { { 1, 2, 3 }, { 4, 5, 6 } }, 
                             { { 7, 8, 9 }, { 10, 11, 12 } } };

Which was taken from here, which I found using Google and searching with this string, “multidimensional arrays in C#”.

solved How do i build array of regions? [closed]