IDictionary<TKey,TValue>.Keys Özellik

Tanım

anahtarlarını IDictionary<TKey,TValue>içeren bir ICollection<T> alır.

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)

Özellik Değeri

ICollection<TKey>

ICollection<T> uygulayan IDictionary<TKey,TValue>nesnenin anahtarlarını içeren bir .

Örnekler

Aşağıdaki kod örneği, özelliğini kullanarak anahtarları tek başına listelemeyi Keys gösterir.

Bu kod, derlenip yürütülebilen daha büyük bir örneğin parçasıdır. Bkz. 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

Açıklamalar

Döndürülen ICollection<T> anahtarların sırası belirtilmemiştir, ancak özelliği tarafından Values döndürülen içindeki karşılık gelen değerlerle ICollection<T> aynı sırada olması garanti edilir.

Şunlara uygulanır

Ayrıca bkz.