How can I create an empty one-dimensional string array?
You don't have to include String twice, and you don't have to use New. Either of the following will work...
Dim strings() as String = {} Dim strings as String() = {}