I need to use square matrix of size between 100x100 and 1000x1000.
I only need to read the matrix, modify some values and copy the matrix (many many times!)
It's more efficent to use the rectangular form, like int[][], or the multidimensional form, like int[,] ?
Or there is a better way or a better class to use?