I was wondering when I should use List< string > and when I should use StringCollection.
Let\'s say that I have to deal with large
List is not a wrapper over ArrayList
List
ArrayList
It is a new implementation of ArrayList implemented by having an array (which is resized to the double size when the count becomes bigger than its length) and a count property.
count