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#?

link|improve this question
1  
This is so easy in Fortran, yet C based 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
feedback

1 Answer

You need to manually copy the elements in a nested loop; there is no faster way.

If you switch to a jagged array (byte[,][] or byte[][][]), you can insert the smaller array as-is into a slot in the larger array (although they will both refer to the same array instance and will pick up changes)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.