Insert element at index : Collection « Data Structure « VB.Net






Insert element at index

 

Imports System
Imports System.Collections.Generic
Imports System.Collections.ObjectModel

Public Class Demo
    
    Public Shared Sub Main() 

        Dim numbers As New Collection(Of String)

        numbers.Add("One")
        numbers.Add("Two")
        numbers.Add("Five")
        numbers.Add("Three")

        numbers.Insert(2, "Zero")
        Display(numbers)

        Console.WriteLine(numbers(2))

    End Sub
    
    Private Shared Sub Display(ByVal cs As Collection(Of String)) 
        Console.WriteLine()
        For Each item As String In cs
            Console.WriteLine(item)
        Next item
    End Sub
End Class

   
  








Related examples in the same category

1.Database Connection state change eventDatabase Connection state change event
2.Store Objects in Collection and retrieveStore Objects in Collection and retrieve
3.Loop through CollectionLoop through Collection
4.For Each loop through a CollectionFor Each loop through a Collection
5.Do While loop through a CollectionDo While loop through a Collection
6.Store Class in a Collection and Retrieve by NameStore Class in a Collection and Retrieve by Name
7.Add string element to String Collection
8.Search item with IndexOf and Contains
9.Assign value by index
10.Remove element and clear the collection