P
PJ6
I've chosen to store the contents of a grid in a two dimensional object
array. As the size of the grid changes, so must the array. I was surprised
to find out that the niceties I'm used to with one dimensional arrays are
just not there with more dimensions. No ReDim (except for the rightmost
dimension), no CopyTo. Now for resizing I can get around this with my own
loops, but I was wondering if I wasn't missing something... more built in
(and therefore probably faster) for multi-dimensional array resizing.
Paul
array. As the size of the grid changes, so must the array. I was surprised
to find out that the niceties I'm used to with one dimensional arrays are
just not there with more dimensions. No ReDim (except for the rightmost
dimension), no CopyTo. Now for resizing I can get around this with my own
loops, but I was wondering if I wasn't missing something... more built in
(and therefore probably faster) for multi-dimensional array resizing.
Paul