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

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Date Time
8.Development
9.Event
10.File Directory
11.Generics
12.GUI
13.Internationalization I18N
14.Language Basics
15.LINQ
16.Network Remote
17.Reflection
18.Security
19.Thread
20.Windows Presentation Foundation
21.Windows System
22.XML
23.XML LINQ
VB.Net Tutorial
VB.Net by API
VB.Net » Data Structure » CollectionScreenshots 
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
w_w___w___.___j___a_va___2___s_.___com__ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.