c# - How do i build array of regions? -
c# - How do i build array of regions? -
the array should contain 3 regions. each part should include 2 numbers :
region 1 illustration contain 3,4 part 2 5,5 part 3 23,100
// three-dimensional array. int[, ,] array3d = new int[,,] { { { 1, 2, 3 }, { 4, 5, 6 } }, { { 7, 8, 9 }, { 10, 11, 12 } } };
which taken here, found using google , searching string, "multidimensional arrays in c#".
c# arrays multidimensional-array
Comments
Post a Comment