Multidimensional Array help?

BlitzMax Forums/BlitzMax Beginners Area/Multidimensional Array help?

lotonah(Posted 2006) [#1]
I've read elsewhere that this isn't possible. Why not?

I want to make a multidimensional array that uses integers and strings. It would look something like this:

DFrameArray[][] = [[10]["Blah","Bleh","Blah2"]]

Is this possible?


CS_TBL(Posted 2006) [#2]
I think not..

Why not make a type which includes an int field and a string field, and make a multidimensional array of that type?


Grisu(Posted 2006) [#3]
Download this beginners guide:
http://www.truplo.com/docs/BeginnersGuideToBlitzMax10.pdf

There's a chapter about Array-handling included.


Perturbatio(Posted 2006) [#4]
could you not have an array of pointers to arrays of various types?