on my winform at runtime i will be resizing my array each time i add an element. so first i must resize to the size + 1, and then add a member to this index. how do i do this?
|
feedback
|
|
You could use the You can use it just like you use an array, with the addition that adding an item to the end is as easy as To use a generic list, add
or a string list like this:
You should get the idea. | |||||
feedback
|
|
The suggested ReDim's need the Preserve keyword for this scenario. ReDim Preserve MyArray(n). | |||
|
feedback
|
|
Use the Redim command to specify the new size.
| |||||
feedback
|
|
I would prefer some type of collection class, but if you WANT to use an array do it like this:
| |||
|
feedback
|
|
As Joel says, use a list. Dim MyList As New List(Of String) Don't forget to change Of String to be Of whichever datatype you're using. | |||
|
feedback
|