Add key value pair to Collection : Collection « Collections « VB.Net Tutorial






Option Strict On

Imports System.Collections

Public Class Collect
   Public Shared Sub Main()
      Dim sta As New Collection

         sta.Add("New York", "NY")
         sta.Add("Michigan", "MI")
         sta.Add("New Jersey", "NJ")
         sta.Add("Massachusetts", "MA")

      For Each stcode As String In sta
         Console.WriteLine(stcode)
      Next
   End Sub
End Class
New York
Michigan
New Jersey
Massachusetts








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