#133 – An Array’s Length Is Fixed
October 28, 2010 Leave a comment
The size of standard arrays in C# is fixed–once instantiated, you can’t change the number of elements in the array. If you need a list of objects to which you can add or remove elements, you should use one of the classes in the System.Collections namespace. Specifically, the ArrayList type allows creating a collection of objects that can grow or shrink dynamically.