I try the following. I got data in the following two-dimensioanl buffer array from 2 channels:
object[,] buffer;
buffer = new buffer[2,1000000];
Now i only want to extract one channel to an one-dimensional array.
object[] bufferdata = buffer(1,???);
Does somebody know an way to get those data in a new array WITHOUT copying each value of the buffer(1,i) in a loop. Iam also able to use this kind of two-dimensional array object[][] buffer. Maybe this is bestter to find a solution.