vote up 2 vote down star

Coming from a Java world into a C# one is there a HashMap equivalent? If not what would you recommend?

flag

3 Answers

vote up 10 vote down check

Dictionary is probably the closest. System.Collections.Generic.Dictionary implements the System.Collections.Generic.IDictionary interface (which is similar to Java's Map interface).

link|flag
vote up 1 vote down

Hashtable

link|flag
2  
Dictionary<TKey, TValue> is preferable, because of compile time type checking and because it doesn't require boxing of value types. – Thorarin Aug 13 at 16:56
vote up -4 vote down

In common use case 'Yes'

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.