Quote Originally Posted by JenniferBabe
For situations like that I like to use the ArrayList which as jmcilhinney said could be resized, you could add or delete elements easily.

Jen
I would strongly recommend against using ArrayList in 2.0.

The expense alone of casting back and forth between (object) and the target data type warrants use of the strongly typed generic List<T>