how to convert a HashTable to Dictionary in C#? is it possible? for example if I have collection of objects in HashTable and if I want to convert it to a dictionary of objects with a specific type, how to do that?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|||
|
|
|||
|
|
also you can create an extension method for that
|
|||
|
|
|
|||
|
|

Dictionaryelements at compile-time or run-time? – Kirk Woll Jun 23 '11 at 14:36Dictionaryto start with. TheHashTableclass is practically obsolete sinceDictionarywas introduced. AsDictionaryis the generic replacement forHashTableyour code would need minor adjustments to use aDictionaryinstead. – Guffa Jun 23 '11 at 14:49