What would be the best data type for storing objects in a 2D array.
the ideal type would be one like generic List but Lists are only 1D. i don't
think i can have an array of lists.
The size of either the row or column is given while the size of the other
dimension can be dynamically changed.
the data type needs to be optimized for performance, only sequential
add/remove is nessesary.
any suggestions?
Tem
the ideal type would be one like generic List but Lists are only 1D. i don't
think i can have an array of lists.
The size of either the row or column is given while the size of the other
dimension can be dynamically changed.
the data type needs to be optimized for performance, only sequential
add/remove is nessesary.
any suggestions?
Tem
Comment