Share via


Values Property

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Gets an ICollection containing the values in the Hashtable.

Namespace:  System.Collections
Assembly:  mscorlib (in mscorlib.dll)

Syntax

'Declaration
Public ReadOnly Property Values As ICollection
public ICollection Values { get; }
public:
virtual property ICollection^ Values {
    ICollection^ get () sealed;
}
abstract Values : ICollection with get
override Values : ICollection with get
final function get Values () : ICollection

Property Value

Type: System.Collections. . :: . .ICollection
An ICollection containing the values in the Hashtable.

Implements

IDictionary. . :: . .Values

Remarks

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

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

Retrieving the value of this property is an O(1) operation.

.NET Framework Security

See Also

Reference

Hashtable Class

System.Collections Namespace