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 屬性排序,而且與 屬性所Values傳回的SortedDictionary<TKey,TValue>.ValueCollection相關聯值的順序相同。

SortedDictionary<TKey,TValue>.KeyCollection 回的 不是靜態複本, SortedDictionary<TKey,TValue>.KeyCollection 而是會參考原始 SortedDictionary<TKey,TValue>中的索引鍵。 因此,對的變更 SortedDictionary<TKey,TValue> 會繼續反映在 中 SortedDictionary<TKey,TValue>.KeyCollection

取得此屬性的值是 O (1) 作業。

適用於

另請參閱