SortedDictionary<TKey,TValue>.Keys 속성

정의

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

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

속성 값

SortedDictionary<TKey,TValue>.KeyCollection의 키를 포함하는 SortedDictionary<TKey,TValue>입니다.

예제

다음 코드 예제를 사용 하 여 Keys 사전에서 키를 열거 하는 방법 및 속성 및 키와 값을 열거 하는 방법을 사전입니다.

이 코드는 컴파일 및 실행할 수 있는 더 큰 예제의 일부입니다. SortedDictionary<TKey,TValue>을 참조하세요.

// To get the keys alone, use the Keys property.
SortedDictionary<string, string>.KeyCollection keyColl =
    openWith.Keys;

// The elements of the KeyCollection are strongly typed
// with the type that was specified for dictionary keys.
Console.WriteLine();
foreach( string s in keyColl )
{
    Console.WriteLine("Key = {0}", s);
}
' To get the keys alone, use the Keys property.
Dim keyColl _
    As SortedDictionary(Of String, String).KeyCollection = _
    openWith.Keys

' The elements of the KeyCollection are strongly typed
' with the type that was specified for dictionary keys.
Console.WriteLine()
For Each s As String In keyColl 
    Console.WriteLine("Key = {0}", s)
Next s
// 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

설명

SortedDictionary<TKey,TValue>.KeyCollection 키는 속성에 Comparer 따라 정렬되며 속성에서 반환된 의 연결된 값 SortedDictionary<TKey,TValue>.ValueCollection 과 동일한 순서로 정렬 Values 됩니다.

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

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

적용 대상

추가 정보