IDictionary<TKey,TValue>.Keys プロパティ

定義

ICollection<T> のキーを保持している 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)

プロパティ値

ICollection<TKey>

ICollection<T> を実装するオブジェクトのキーを保持している IDictionary<TKey,TValue>

次のコード例は、 プロパティを使用してキーを列挙する方法を Keys 示しています。

このコードは、コンパイルおよび実行できるより大きな例の一部です。 以下を参照してください。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

注釈

返される ICollection<T> 内のキーの順序は指定されていませんが、 プロパティによってValues返される 内ICollection<T>の対応する値と同じ順序であることが保証されます。

適用対象

こちらもご覧ください