23.02.2016, 22:32
Hi there!
i'm trying to embed this 2 arrays
into only one, but with 2 index
something like:
but i have no idea how to declare it, can someone help me?
i'm trying to embed this 2 arrays
Код:
new array1[][][] = { {"text array 1", "text array 1.5"}, {"text array 1 - 2", "text array 1.5 - 2"} }; new array2[][][] = { {"text array 2", "text array 2.5"} };
something like:
Код:
array[0][][] = { {"text array 1", "text array 1.5"}, {"text array 1 - 2", "text array 1.5 - 2"} } array[1][][] = { {"text array 2", "text array 2.5"} };