I have been programming perl for a few years, and am used to being able to build and access complex data structures like hashes of hashes, arrays of hashes, hashes of arrays, etc.
I am trying to do the same in
VB.NET, and eventually in C#, but I am finding very little on how to do this. Building these structures seems to be easy. For example
Code:
myHash.Add("key", myArray) 'myArray is an arraylist of strings
to make a hashtable entry that is an array.
I just can't seem to figure out how to get at the array once it is in the hash. Any direction/documentation would be greatly appreciated.
Thanks.