Coming from a Java world into a C# one is there a HashMap equivalent? If not what would you recommend?
+13
A:
Dictionary is probably the closest. System.Collections.Generic.Dictionary implements the System.Collections.Generic.IDictionary interface (which is similar to Java's Map interface).
R. Bemrose
2009-08-13 16:37:39