May 2010
Intermediate to advanced
1752 pages
41h 17m
English
When the .NET platform was first released, programmers frequently used the System.Collections namespace of mscorlib.dll. Here, developers were provided with a set of classes that allowed them to manage and organize large amounts of data. Table 10-1 documents some of the more commonly used collection classes, and the core interfaces they implement.
| System.Collections Class | Meaning in Life | Key Implemented Interfaces |
|---|---|---|
| ArrayList | Represents a dynamically sized collection of objects listed in sequential order. | IList, ICollection, IEnumerable, and ICloneable |
| Hashtable | Represents a collection of key/value pairs that are organized based on the hash code of the ... |