vote up 1 vote down star

Can i get an example of how to make something like a vector or an arraylist in visual basic .net

flag

4 Answers

vote up 7 vote down check
Dim list As New ArrayList

or (equivalently):

Dim list As ArrayList = New ArrayList

If you want a generic List (very similiar to ArrayList):

Dim list As New List(Of String)

Also see the ArrayList and List documentation.

link|flag
4  
+1 for mentioning List(Of T) - this is a better alternative than ArrayList. – Reed Copsey Sep 21 at 17:06
ArrayList is going to be depricated and, from what I understand, isn't even available in some platforms such as Silverlight. – Grauenwolf Sep 21 at 20:46
vote up 1 vote down

Try the following

Dim list As New ArrayList()
list.Add("hello")
list.Add("world")
For Each cur As String in list
  Console.WriteLine(cur)
Next
link|flag
vote up 0 vote down

Module Module1

    Sub Main()
        Dim al As New ArrayList()
        al.Add("1")
        al.Add("2")
        al.Add("3")
    End Sub

End Module
link|flag
vote up 0 vote down

If you happen to be using VB10 you should be able to use the following syntax.

Dim list As New List(Of Integer) From { 1, 2, 3, 4, 5 }
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.