Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 1.09 KB

ObservableDictionary-2.md

File metadata and controls

38 lines (28 loc) · 1.09 KB

ObservableDictionary<TKey,TValue> class

An observable variant of Dictionary.

public class ObservableDictionary<TKey, TValue> : Dictionary<TKey, TValue>, INotifyCollectionChanged
    where TKey : class
    where TValue : class
parameter description
TKey
TValue

Public Members

name description
ObservableDictionary() The default constructor.
Item { get; set; }
event CollectionChanged
Add(…)
Clear()
Refresh()
Remove(…)

Protected Members

name description
virtual NotifyCollectionChanged(…)

See Also