Inserting items into a collection by index : Collection « Collections « VB.Net Tutorial






Public Class Tester
    Public Shared Sub Main
        Dim wordCollection As New Collection

        wordCollection.Add("This")
        wordCollection.Add("is")
        wordCollection.Add("a")
        wordCollection.Add("collection")
        wordCollection.Add("of")
        wordCollection.Add("words")

        ' ----- Insert a word after item 3.
        wordCollection.Add("slightly", , , 3)

        ' ----- Insert a word before item 5.
        wordCollection.Add("longer", , 5)

        For Each word As String In wordCollection
            Console.WriteLine(word)
        Next word

    End Sub

End Class
This
is
a
slightly
longer
collection
of
words








8.9.Collection
8.9.1.Inserting items into a collection by index
8.9.2.Add key value pair to Collection
8.9.3.Store objects in Collection and retrieve by key and index
8.9.4.Get Enumerator from Collection
8.9.5.Deleting the members of a collection
8.9.6.Remove from Collection
8.9.7.Scanning items in a collection