This works for a 2 dimensional hash table (although a bit more work than what
should be needed):
---------------------------------------
Hashtable firstD = new Hashtable();
firstD.Add( "first dimension key", new Hashtable() );
( ( Hashtable )firstD["first dimension key"] ).Add( "second dimension key",
"second dimension object" );
MessageBox.Show( ( ( Hashtable )firstD["first dimension key"] )["second
dimension key"].ToString() );
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.