How can I create an empty one-dimensional string array?
|
Dim strEmpty(-1) As String |
|||||||||
|
|
@Chris
VB is 0-indexed in array declarations, so you'd actually have 11 elements in that array. It's a common mistake when translating from C languages. As for the question, the following would work:
|
|||||||
|
|
Something like:
Would give you an array of 10 String references (each pointing to Nothing). If you're not sure of the size at declaration time, you can declare a String array like this:
And then you can point it at a properly-sized array of Strings later:
ZombieSheep is right about using a List if you don't know the total size and you need to dynamically populate it. In VB.NET that would be:
And then to get an array from that List:
@Mark Thanks for the correction. |
||||
|
|
|
The array you created by Dim s(0) As String IS NOT EMPTY In VB.Net, the subscript you use in the array is index of the last element. VB.Net by default starts indexing at 0, so you have an array that already has one element. You should instead try using If you really want an empty string array, declare it like this:
or
|
||||
|
|
Not sure why you'd want to, but the C# way would be
I'm guessing that VB won't be too dissimilar to this. If you're building an empty array so you can populate it with values later, you really should consider using
and converting it to an array (if you really need it as an array) with
|
|||
|
|
|
FYI, be careful with It's kind of dangerous at times. like |
|||
|
|
