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

定義

ICollection<T> 内の値を格納している IDictionary<TKey,TValue> を取得します。

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

プロパティ値

ICollection<TValue>

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

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

このコードは、コンパイルおよび実行できる大きな例の一部です。 以下を参照してください。System.Collections.Generic.IDictionary<TKey,TValue>

// To get the values alone, use the Values property.
ICollection<String^>^ icoll = openWith->Values;

// 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("Value = {0}", s);
}
// To get the values alone, use the Values property.
ICollection<string> icoll = openWith.Values;

// 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("Value = {0}", s);
}
' To get the values alone, use the Values property.
Dim icoll As ICollection(Of String) = openWith.Values

' 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("Value = {0}", s)
Next s

注釈

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

適用対象

こちらもご覧ください