hi,
i want to declare a new two dimensional array, and set it's length to be the same as another array i get as parameter to a function
it goes something like this:
public int[][] GetArray(int x, int[][] array)
{
int [][] newArray = new int[array.GetLength(0)][array.GetLength(1)];
...
...
...
return newArray;
}
is it possible to do this type of thing???