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?
List(Of String)is a perfectly good way of storing a list of strings. If you need to add/remove elements from in the middle, you might want to consider using aLinkedList(Of String)but for most situationsListis fine.