Deleting the members of a collection : Collection « Collections « VB.Net Tutorial






Option Strict On

Public Module CollectionTest
   Public Sub Main()
      Dim weights As New Collection

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

      For ordinal As Integer = weights.Count To 1 Step -1
         weights.Remove(ordinal)
      Next
      Console.WriteLine("The collection now has {0} items.", weights.Count)
   End Sub
End Module
The collection now has 0 items.








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