Class ObservableValuesDictionary<TKey, TValue\>
Last update: 16.07.2025Namespace: VM.Collections
Assembly: VM.dll
public class ObservableValuesDictionary<TKey, TValue>
Type Parameters
TKey
TValue
Inheritance
object ← ObservableValuesDictionary<TKey, TValue>
Constructors
ObservableValuesDictionary()
public ObservableValuesDictionary()
Properties
Count
public int Count { get; }
Property Value
IsReadOnly
public bool IsReadOnly { get; }
Property Value
Keys
public ICollection<TKey> Keys { get; }
Property Value
ICollection<TKey>
Values
public ReadOnlyObservableCollection<TValue> Values { get; }
Property Value
ReadOnlyObservableCollection<TValue>
this[TKey]
public TValue this[TKey key] { get; set; }
Property Value
TValue
Methods
Add(TKey, TValue)
public void Add(TKey key, TValue value)
Parameters
key TKey
value TValue
Clear()
public void Clear()
Contains(KeyValuePair<TKey, TValue>)
public bool Contains(KeyValuePair<TKey, TValue> item)
Parameters
item KeyValuePair<TKey, TValue>
Returns
ContainsKey(TKey)
public bool ContainsKey(TKey key)
Parameters
key TKey
Returns
ContainsValue(TValue)
public bool ContainsValue(TValue value)
Parameters
value TValue
Returns
CopyTo(KeyValuePair<TKey, TValue>[], int)
public void CopyTo(KeyValuePair<TKey, TValue>[] array, int arrayIndex)
Parameters
array KeyValuePair<TKey, TValue>[]
arrayIndex int
GetEnumerator()
public IEnumerator GetEnumerator()
Returns
Remove(TKey)
public virtual bool Remove(TKey key)
Parameters
key TKey
Returns
TryGetValue(TKey, out TValue)
public bool TryGetValue(TKey key, out TValue value)
Parameters
key TKey
value TValue