Extreamely fast way to clone the values of an array into a second array?
- by George
I am currently working on an application that is responsible for calculating random permutations of a multidemensional array.
Currently the bulk of the time in the application is spent copying the array in each iteration (1 million iterations total). On my current system, the entire process takes 50 seconds to complete, 39 of those seconds spent cloning the array.
My array cloning routine is the following:
public static int[][] CopyArray(this int[][] source)
{
int[][] destination = new int[source.Length][];
// For each Row
for (int y = 0; y < source.Length; y++)
{
// Initialize Array
destination[y] = new int[source[y].Length];
// For each Column
for (int x = 0; x < destination[y].Length; x++)
{
destination[y][x] = source[y][x];
}
}
return destination;
}
Is there any way, safe or unsafe, to achieve the same effect as above, much faster?