Get Enumerator from Collection : Collection « Collections « VB.Net Tutorial






Imports System.Collections

Public Class Enumerate
   Public Shared Sub Main()
      Dim weights As New Collection
      Dim iterator As IEnumerator

      weights.Add("ounces", "oz")
      weights.Add("pounds", "lbs")
      weights.Add("kilograms", "kg")
      weights.Add("milligrams", "mg")

      iterator = weights.GetEnumerator
      Do While iterator.MoveNext
         Console.WriteLine(iterator.Current)
      Loop
   End Sub
End Class
ounces
pounds
kilograms
milligrams








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