IDictionary<TKey,TValue>.Keys Proprietà

Definizione

Ottiene ICollection<T> contenente le chiavi di 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)

Valore della proprietà

ICollection<TKey>

Interfaccia ICollection<T> contenente le chiavi dell'oggetto che implementa l'interfaccia IDictionary<TKey,TValue>.

Esempio

Nell'esempio di codice seguente viene illustrato come enumerare solo le chiavi usando la Keys proprietà .

Questo codice fa parte di un esempio più grande che può essere compilato ed eseguito. Vedere 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

Commenti

L'ordine delle chiavi restituite ICollection<T> non è specificato, ma è garantito che sia lo stesso ordine dei valori corrispondenti nella ICollection<T> proprietà restituita.Values

Si applica a

Vedi anche