Quote Originally Posted by jmcilhinney
Don't use ArrayLists in .NET 2.0. If you want a collection of String objects then use a StringCollection, which was available in .NET 1.x too, or a List(Of String). Only use an ArrayList on the rare occasion that you want to be able to store multiple, unrelated types in the same collection.
I am actually looking to store different types in there aswell, but thanks for the advice

chem