I have a multidimensional array
byte[,] matrix;
and i want copy in a 3 dimension array
byte[,,] 3dplan;
in this way
3dplan[,,0]=matrix
What is the fastest way to accomplish this task in c#?
|
I have a multidimensional array
and i want copy in a 3 dimension array
in this way
What is the fastest way to accomplish this task in c#? | ||||
|
feedback
|
|
You need to manually copy the elements in a nested loop; there is no faster way. If you switch to a jagged array ( | |||
|
feedback
|
Cbased languages have not caught up to the simplicity of array operators and slice indeces. You always have to do the math by hand, one-by-one each component. Oh, how I long for an array aware .NET language with intellisense. – ja72 May 10 '11 at 16:27