In .NET which data type do you use to store list of strings ?
Currently I'm using List(Of String)
because it's easier than Array
to manage and add/remove stuff. I'm trying to understand what are the other options, when they become handy and when I should avoid List(Of String)
usage.
Do you use another type? Why and When?