Dictionary<TKey,TValue>.Keys 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
에 있는 키가 Dictionary<TKey,TValue>포함된 컬렉션을 가져옵니다.
public:
property System::Collections::Generic::Dictionary<TKey, TValue>::KeyCollection ^ Keys { System::Collections::Generic::Dictionary<TKey, TValue>::KeyCollection ^ get(); };
public System.Collections.Generic.Dictionary<TKey,TValue>.KeyCollection Keys { get; }
member this.Keys : System.Collections.Generic.Dictionary<'Key, 'Value>.KeyCollection
Public ReadOnly Property Keys As Dictionary(Of TKey, TValue).KeyCollection
속성 값
Dictionary<TKey,TValue>.KeyCollection 에 있는 키를 포함하는 A.Dictionary<TKey,TValue>
예제
다음 코드 예제에서는 속성을 사용 하 여 Keys 사전에서 키를 열거 하는 방법 및 사전의 키와 값을 열거 하는 방법을 보여 줌
이 코드는 컴파일 및 실행할 수 있는 더 큰 예제의 일부입니다(openWith 이 예제에 사용된 사전의 이름).
Dictionary<TKey,TValue>을(를) 참조하세요.
// To get the keys alone, use the Keys property.
Dictionary<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.
let keyColl = openWith.Keys
// The elements of the KeyCollection are strongly typed
// with the type that was specified for dictionary keys.
printfn ""
for s in keyColl do
printfn $"Key = {s}"
' To get the keys alone, use the Keys property.
Dim keyColl As _
Dictionary(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.
printfn ""
for kvp in openWith do
printfn $"Key = {kvp.Key}, Value = {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>.KeyCollection 의 순서는 지정되지 않지만 속성에서 Dictionary<TKey,TValue>.ValueCollection 반환 Values 된 연결된 값과 동일한 순서입니다.
반환 Dictionary<TKey,TValue>.KeyCollection 된 복사본은 정적 복사본 Dictionary<TKey,TValue>.KeyCollection 이 아니라 원래 Dictionary<TKey,TValue>의 키를 다시 참조합니다. 따라서 변경 내용이 Dictionary<TKey,TValue> 계속 에 반영됩니다 Dictionary<TKey,TValue>.KeyCollection.
이 속성의 값을 가져오는 것은 O(1) 작업입니다.