What’s the .NET collection class that allows an element to be accessed using a unique key?
Index
‹
Visual C#
‹
Visual C# General
Author
Message
Shaantu
Posted: Visual C# General, What’s the .NET collection class that allows an element to be accessed using a unique key?
Top
What’s the .NET collection class that allows an element to be accessed using a unique key
HashTable.
I believe Dictionary is another class in framework 2.0 that gives the same functionality.
Visual C#18
Mattias Sjogren
Posted: Visual C# General, What’s the .NET collection class that allows an element to be accessed using a unique key?
Top
All types that implement IDictionary or IDictionary<TKey, TValue> fits that description.
Index
‹
Visual C#
‹
Visual C# General