ReadOnlyDictionary<TKey, TValue>.Keys Property
Gets a collection containing the keys of the dictionary object.
Namespace: Microsoft.Data.Schema
Assembly: Microsoft.Data.Schema (in Microsoft.Data.Schema.dll)
Syntax
'Declaration
Public ReadOnly Property Keys As ICollection(Of TKey)
Get
'Usage
Dim instance As ReadOnlyDictionary
Dim value As ICollection(Of TKey)
value = instance.Keys
public ICollection<TKey> Keys { get; }
public:
virtual property ICollection<TKey>^ Keys {
ICollection<TKey>^ get () sealed;
}
final function get Keys () : ICollection<TKey>
abstract Keys : ICollection<'TKey>
override Keys : ICollection<'TKey>
Property Value
Type: System.Collections.Generic.ICollection<TKey>
Implements
IDictionary<TKey, TValue>.Keys
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
ReadOnlyDictionary<TKey, TValue> Class