G
Guest
Hello,
I am doing the below code.
for (int n = 0; n < 1000; n++)
buffer[n] = data[FrameNumber, n];
Here, buffer is one dimension int array and data is two dimensions array.
Is there any better way to copy from two dimensions array to one dimension
array
in performance perspective?
Thanks,
I am doing the below code.
for (int n = 0; n < 1000; n++)
buffer[n] = data[FrameNumber, n];
Here, buffer is one dimension int array and data is two dimensions array.
Is there any better way to copy from two dimensions array to one dimension
array
in performance perspective?
Thanks,