FrozenDictionary<TKey,TValue>.Keys Property

Definition

Gets a collection containing the keys in the dictionary.

public:
 property System::Collections::Immutable::ImmutableArray<TKey> Keys { System::Collections::Immutable::ImmutableArray<TKey> get(); };
public System.Collections.Immutable.ImmutableArray<TKey> Keys { get; }
member this.Keys : System.Collections.Immutable.ImmutableArray<'Key>
Public ReadOnly Property Keys As ImmutableArray(Of TKey)

Property Value

Remarks

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

Applies to