Mega Code Archive

 
Categories / VB.Net / Data Structure
 

Add element to List at position of 2

Imports System Imports System.Collections.Generic Public Class Example     Public Shared Sub Main()         Dim myList As New List(Of String)         Console.WriteLine("Capacity: {0}", myList.Capacity)         myList.Add("A")         myList.Add("B")         myList.Add("C")         myList.Add("D")         myList.Add("E")         For Each letter As String In myList             Console.WriteLine(letter)         Next         myList.Insert(2, "E")         For Each letter As String In myList             Console.WriteLine(letter)         Next     End Sub End Class