DigiOz Hashtable DLL Version 1.0.0.0 (for .NET 2.0)
===================================================

DLL Name: digioz.hashtable.dll
Purpose:  To summarize all the capabilities of HashTable in the dot net framework into one easy to use class.

How to Use it
=============

1- Start a new VB.NET Windows Application Solution.

2- Open the "Solution Explorer" window.

3- Right-Click on References Folder inside of Solution Explorer for your project.

4- Select "Add Reference" from the menu given. 

5- Click on the "Projects" Tab, and click on "Browse" button.

6- Find the digioz.google.dll file from the location you downloaded and saved it to, select it and hit Open.

Sample usage of this DLL:
=========================
Dim ht As New digioz.hashtable.clsHashtable
Dim b1, b2, b3 As Boolean

ht.AddToTable("key1", "item1")
ht.AddToTable("Key2", "item2")
ht.AddToTable(1, 100)
b1 = ht.KeyExists("Key2")
b2 = ht.ItemExists("item1")
b3 = ht.ItemExists("item3")

Console.WriteLine("Starting Count: " & ht.Count)

If b1 = True Then
   Console.WriteLine("B2 Key Exists!")
End If

If b2 = True Then
   Console.WriteLine("B1 Item Exists!")
End If

If b3 = False Then
   Console.WriteLine("B3 Item Does NOT Exist!")
End If

Console.WriteLine("Key1 Value: " & ht.GetValue("key1").ToString())

ht.RemoveFromTable("key1")

Console.WriteLine("Count after removing key1: " & ht.Count)

Console.ReadLine()
