I have 2 hashtables:h1 and h2..
Here I require to use a hashtable within another hashtable..
Something like the following:
But it results in an unexpected exception..Code:foreach(DictionaryEntry entry in h1) { /*some operation*/ foreach(DictionaryEntry entry1 in h2) { /*processing*/ } }
How can I do it??




Reply With Quote
