System.Collections.Specialized Namespace
The System.Collections.Specialized namespace contains specialized and strongly typed collection classes, such as lists, dictionaries, and hybrid collections.
🔍
| Class | Summary |
|---|---|
| StringCollection | Represents a strongly typed collection of strings. |
| NameValueCollection | Provides a collection of associated String keys and String values that can be accessed either with the key or with the index. |
| OrderedDictionary | Represents a collection of key/value pairs that are accessible by the key or index. |
| HybridDictionary | Optimizes memory and performance based on the number of items in the collection. |
| ListDictionary | Implements a simple dictionary of objects that are accessible by key. |
| BitVector32 | Provides a simple structure that stores Boolean values and small integers. |
| StringDictionary | Implements a strongly typed dictionary for string keys and values. |
| StringEnumerator | Enumerates the elements of a StringCollection. |
| NotifyCollectionChangedEventArgs | Provides data for the NotifyCollectionChanged event. |