IDictionary<TKey,TValue>.Keys Eigenschaft

Definition

Ruft eine ICollection<T> ab, die die Schlüssel des IDictionary<TKey,TValue> enthält.

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

Eigenschaftswert

ICollection<TKey>

Eine ICollection<T>, die die Schlüssel des Objekts enthält, das IDictionary<TKey,TValue> implementiert.

Beispiele

Im folgenden Codebeispiel wird gezeigt, wie Schlüssel allein mithilfe der Keys -Eigenschaft aufgelistet werden.

Dieser Code ist Teil eines größeren Beispiels, das kompiliert und ausgeführt werden kann. Siehe System.Collections.Generic.IDictionary<TKey,TValue>.

// To get the keys alone, use the Keys property.
icoll = openWith->Keys;

// The elements of the ValueCollection are strongly typed
// with the type that was specified for dictionary values.
Console::WriteLine();
for each( String^ s in icoll )
{
    Console::WriteLine("Key = {0}", s);
}
// To get the keys alone, use the Keys property.
icoll = openWith.Keys;

// The elements of the ValueCollection are strongly typed
// with the type that was specified for dictionary values.
Console.WriteLine();
foreach( string s in icoll )
{
    Console.WriteLine("Key = {0}", s);
}
' To get the keys alone, use the Keys property.
icoll = openWith.Keys

' The elements of the ValueCollection are strongly typed
' with the type that was specified for dictionary values.
Console.WriteLine()
For Each s As String In  icoll
    Console.WriteLine("Key = {0}", s)
Next s

Hinweise

Die Reihenfolge der Schlüssel in der zurückgegebenen ICollection<T> ist nicht angegeben, aber es ist garantiert, dass sie dieselbe Reihenfolge wie die entsprechenden Werte in der ICollection<T> von der Values -Eigenschaft zurückgegebenen ist.

Gilt für:

Weitere Informationen