Dictionary<TKey,TValue>.Values 속성

정의

Dictionary<TKey,TValue>의 값을 포함하는 컬렉션을 가져옵니다.

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

속성 값

Dictionary<TKey,TValue>.ValueCollection의 값을 포함하는 Dictionary<TKey,TValue>입니다.

예제

이 코드 예제에서는 속성을 사용하여 Values 사전의 값을 열거하는 방법과 사전의 키와 값을 열거하는 방법을 보여줍니다.

이 코드 예제는 클래스에 Dictionary<TKey,TValue> 대해 제공되는 더 큰 예제의 일부입니다(openWith 이 예제에서 사용되는 사전의 이름임).

// To get the values alone, use the Values property.
Dictionary<String^, String^>::ValueCollection^ valueColl =
    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 valueColl )
{
    Console::WriteLine("Value = {0}", s);
}
// To get the values alone, use the Values property.
Dictionary<string, string>.ValueCollection valueColl =
    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 valueColl )
{
    Console.WriteLine("Value = {0}", s);
}
' To get the values alone, use the Values property.
Dim valueColl As _
    Dictionary(Of String, String).ValueCollection = _
    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  valueColl
    Console.WriteLine("Value = {0}", s)
Next s
// When you use foreach to enumerate dictionary elements,
// the elements are retrieved as KeyValuePair objects.
Console::WriteLine();
for each( KeyValuePair<String^, String^> kvp in openWith )
{
    Console::WriteLine("Key = {0}, Value = {1}",
        kvp.Key, kvp.Value);
}
// When you use foreach to enumerate dictionary elements,
// the elements are retrieved as KeyValuePair objects.
Console.WriteLine();
foreach( KeyValuePair<string, string> kvp in openWith )
{
    Console.WriteLine("Key = {0}, Value = {1}",
        kvp.Key, kvp.Value);
}
' When you use foreach to enumerate dictionary elements,
' the elements are retrieved as KeyValuePair objects.
Console.WriteLine()
For Each kvp As KeyValuePair(Of String, String) In openWith
    Console.WriteLine("Key = {0}, Value = {1}", _
        kvp.Key, kvp.Value)
Next kvp

설명

Dictionary<TKey,TValue>.ValueCollection에서 값의 순서는 지정되지 않지만 Dictionary<TKey,TValue>.KeyCollection 속성이 반환하는 Keys의 연결된 키와 순서가 동일합니다.

반환 Dictionary<TKey,TValue>.ValueCollection 된 는 정적 복사본 Dictionary<TKey,TValue>.ValueCollection 이 아니라 원래 Dictionary<TKey,TValue>의 값을 다시 참조합니다. 따라서 에 대한 Dictionary<TKey,TValue> 변경 내용은 에 계속 반영됩니다 Dictionary<TKey,TValue>.ValueCollection.

이 속성의 값을 가져오는 것은 O(1) 작업입니다.

적용 대상

추가 정보