A hash table is a .NET class that allows you to store a collection of objects. You access the object thru a known key (usually a string). This is compared to a simpler collection such as an array which you can't as easily "find" a particular element in the collection.
Dim hshMyTables As New HashTable
hshMyTables.Item("daTableName") = New SqlDataAdapter
-
Peter