VB.NET Language in a Nutshell
| Hashtable.Values Property |
Class
System.Collections.Hashtable
Syntax
hashtablevariable .Values( )
- hashtablevariable (required; Object)
-
A reference to a Hashtable object
Return Value
An ICollection object containing the values in the hash table
Description
Returns an ICollection object that contains the values in the hash table. There is not much we can do with an ICollection object except copy it to an array of objects.
See Also
Hashtable.Keys Property