IDictionary<TKey,TValue>.Keys Vlastnost

Definice

Získá obsahující ICollection<T> klíče objektu IDictionary<TKey,TValue>.

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)

Hodnota vlastnosti

ICollection<TKey>

Obsahující ICollection<T> klíče objektu, který implementuje IDictionary<TKey,TValue>.

Příklady

Následující příklad kódu ukazuje, jak vytvořit výčet samotných klíčů pomocí Keys vlastnosti .

Tento kód je součástí většího příkladu, který lze zkompilovat a spustit. Viz třída 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

Poznámky

Pořadí klíčů ve vrácené ICollection<T> hodnotě není neurčené, ale je zaručeno, že bude mít stejné pořadí jako odpovídající hodnoty ve ICollection<T> vrácené Values vlastnosti.

Platí pro

Viz také