April 2002
Beginner
672 pages
14h 43m
English
Use the System.Collections namespace when you need to create a data structure that can hold a group of similar objects. The System.Collections namespace contains all the classes and interfaces needed to define collections of objects. Some of the classes that you might use most often are listed in Table 4.4.
| Class | Description |
|---|---|
| ArrayList | An ArrayList is similar to an array, but the ArrayList class allows you to add items without managing the size of the list yourself (much like a VB Collection object). |
| CollectionBase | This class is the base for a strongly typed collection, which is critical for creating collection classes. |
| DictionaryBase | This class is the base for a strongly typed ... |
Read now
Unlock full access