共用方式為


SortedDictionary<TKey,TValue>.Values 屬性

定義

會得到包含 中 SortedDictionary<TKey,TValue>值的集合。

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

屬性值

包含 中的 數值 SortedDictionary<TKey,TValue>ASortedDictionary<TKey,TValue>.ValueCollection

範例

此程式碼範例展示了如何使用 Values 屬性枚舉字典中的值,以及如何枚舉字典中的鍵與值。

此程式碼範例是本類別更大範例 SortedDictionary<TKey,TValue> 的一部分。

// To get the values alone, use the Values property.
SortedDictionary<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 SortedDictionary(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();
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>.ValueCollection值依據屬性Comparer排序,且與屬性回傳KeysSortedDictionary<TKey,TValue>.KeyCollection相關鍵順序相同。

回傳 SortedDictionary<TKey,TValue>.ValueCollection 的 不是靜態副本;而是 SortedDictionary<TKey,TValue>.ValueCollection 回溯到原始 SortedDictionary<TKey,TValue>中的值。 因此,變化 SortedDictionary<TKey,TValue> 會持續反映在 SortedDictionary<TKey,TValue>.ValueCollection中。

取得此性質的值需進行 O(1) 運算。

適用於

另請參閱