wallaceoc80
Programmer
Hi,
I have an array of arrays decalred as follows:
and populated as you would expect.
Later in the program there are situations when I want to remove a corresponding row/column e.g. egArray[2][2].
Is there any easy way of doing this without having to have a number of different loops?
Thanks,
Wallace
I have an array of arrays decalred as follows:
Code:
double[][] egArray = new double[19][];
Later in the program there are situations when I want to remove a corresponding row/column e.g. egArray[2][2].
Is there any easy way of doing this without having to have a number of different loops?
Thanks,
Wallace