Hashtable.Remove Method removes the element with the specified key from the Hashtable. : HashTable « Data Structure « VB.Net






Hashtable.Remove Method removes the element with the specified key from the Hashtable.

 

Imports System
Imports System.Collections
Imports Microsoft.VisualBasic

Public Class SamplesHashtable    
    Public Shared Sub Main()
        Dim myHT As New Hashtable()
        myHT.Add("1a", "The")
        myHT.Add("1b", "quick")
        myHT.Add("1c", "brown")

        PrintKeysAndValues(myHT)
        myHT.Remove("1a")

        PrintKeysAndValues(myHT)
    End Sub    
    Public Shared Sub PrintKeysAndValues(myHT As Hashtable)
        Dim de As DictionaryEntry
        For Each de In  myHT
            Console.WriteLine("    {0}:    {1}", de.Key, de.Value)
        Next de
    End Sub
End Class

   
  








Related examples in the same category

1.Hashtable: add,get,count, Dictionary Key and value EnumeratorHashtable: add,get,count, Dictionary Key and value Enumerator
2.Store Environment Variables into a Hash tableStore Environment Variables into a Hash table
3.Create a Hashtable using the default hash code provider and the default comparer.
4.Create a Hashtable using a case-insensitive code provider and a case-insensitive comparer
5.Create a Hashtable using a case-insensitive code provider and a case-insensitive comparer
6.Create a Hashtable using a case-insensitive code provider and a case-insensitive comparer based on the Turkish culture (tr-TR)
7.Create Hashtable class from another dictionary
8.Hashtable.Add Method adds an element with the specified key and value into the Hashtable.
9.Hashtable.Clear Method removes all elements from the Hashtable.
10.Hashtable.Contains Method Determines whether the Hashtable contains a specific key.
11.Hashtable.CopyTo Method copies the Hashtable elements to a one-dimensional Array instance at the specified index.
12.Hashtable.GetEnumerator Method returns an IDictionaryEnumerator that iterates through the Hashtable.
13.Displays the keys and values of the Hashtable using foreach statement
14.Hashtable.IsSynchronized Property gets a value indicating whether access to the Hashtable is synchronized (thread safe).