SortedDictionary<TKey,TValue>.ValueCollection Oluşturucu
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Sınıfının belirtilen SortedDictionary<TKey,TValue>içindeki değerleri yansıtan yeni bir örneğini SortedDictionary<TKey,TValue>.ValueCollection başlatır.
public:
ValueCollection(System::Collections::Generic::SortedDictionary<TKey, TValue> ^ dictionary);
public ValueCollection (System.Collections.Generic.SortedDictionary<TKey,TValue> dictionary);
new System.Collections.Generic.SortedDictionary<'Key, 'Value>.ValueCollection : System.Collections.Generic.SortedDictionary<'Key, 'Value> -> System.Collections.Generic.SortedDictionary<'Key, 'Value>.ValueCollection
Public Sub New (dictionary As SortedDictionary(Of TKey, TValue))
Parametreler
- dictionary
- SortedDictionary<TKey,TValue>
SortedDictionary<TKey,TValue> Değerleri yeni SortedDictionary<TKey,TValue>.ValueCollectionöğesine yansıtılan değeridir.
Özel durumlar
dictionary
, null
değeridir.
Açıklamalar
SortedDictionary<TKey,TValue>.ValueCollection statik bir kopya değildir; bunun yerine, SortedDictionary<TKey,TValue>.ValueCollection özgün SortedDictionary<TKey,TValue>içindeki değerlere geri başvurur. Bu nedenle, dosyasında yapılan SortedDictionary<TKey,TValue> değişiklikler öğesine SortedDictionary<TKey,TValue>.ValueCollectionyansıtılmaya devam edilir.
Bu oluşturucu bir O(1) işlemidir.