Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
[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
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
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.