NeuralJack
Centurion
- Joined
- Jul 28, 2005
- Messages
- 138
HashTable vs Jagged Array for an array of arrays[vb.net]
I have a custom class which holds about 8 different variables of differing types. I need to create various Arrays of those classes... but i'd also like to sort all of those arrays for easier programming by enumerating those arrays.
Is Hashtable a low-system resource thing or what? I'd like to simply use a jagged array but the documentation says they're not CLS compliant.
I'm wondering what the best solution to this is, performance is probably an issue.
Is there a simple way to enumerate class arrays?
I have a custom class which holds about 8 different variables of differing types. I need to create various Arrays of those classes... but i'd also like to sort all of those arrays for easier programming by enumerating those arrays.
Is Hashtable a low-system resource thing or what? I'd like to simply use a jagged array but the documentation says they're not CLS compliant.
I'm wondering what the best solution to this is, performance is probably an issue.
Is there a simple way to enumerate class arrays?
Last edited: