Hashtable: Keys (get)

Keys

Gets an ICollection containing the keys in the Hashtable.



 Public Property Get Keys ( ) As ICollection

Return Values

ICollection -  An ICollection containing the keys in the Hashtable.

Remarks

The order of the keys in the ICollection is unspecified, but it is the same order as the associated values in the ICollection returned by the Values method.

The returned ICollection is not a static copy; instead, the ICollection refers back to the keys in the original Hashtable. Therefore, changes to the Hashtable continue to be reflected in the ICollection.

Read Only.

See Also

Project CorLib Overview

Class Hashtable Overview

Values