byte [][][] multiArray;
I would like to have it end up like this:
multiArray[a][b][c]
ie., the left most dimension have a elements, middle, b which are all of length c.
THANKS!!
RON
OF COURSE, right after I posted it I remembered the syntax; that was my issue. And THANKS to those who sent me some pointers about it.
RON
Shahan AyyubPosted Dec 22, 2010, 10:33 AM
int a=3, b=3, c=3; //just an example
byte[,,] multiArray = new byte[a,b,c];