class ObservableDictionary<TKey,TValue>

in global :: System . Collections . ObjectModel

A dictionary with callbacks for when changes occur.


public ObservableDictionary<TKey,TValue>( int capacity, IEqualityComparer<TKey> comparer )

😔 No documentation found.

public ObservableDictionary<TKey,TValue>( int capacity )

😔 No documentation found.

public ObservableDictionary<TKey,TValue>( IEqualityComparer<TKey> comparer )

😔 No documentation found.

public ObservableDictionary<TKey,TValue>( IDictionary<TKey,TValue> dictionary )

😔 No documentation found.

public ObservableDictionary<TKey,TValue>( )

😔 No documentation found.

public int GetHashCode( )

😔 No documentation found.

public bool Equals( object obj )

😔 No documentation found.

public string ToString( )

😔 No documentation found.

public Type GetType( )

😔 No documentation found.

public void AddRange( IDictionary<TKey,TValue> items )

😔 No documentation found.

public void remove_PropertyChanged( PropertyChangedEventHandler value )

😔 No documentation found.

public void add_PropertyChanged( PropertyChangedEventHandler value )

😔 No documentation found.

public void remove_CollectionChanged( NotifyCollectionChangedEventHandler value )

😔 No documentation found.

public void add_CollectionChanged( NotifyCollectionChangedEventHandler value )

😔 No documentation found.

public IEnumerator<KeyValuePair<TKey,TValue>> GetEnumerator( )

😔 No documentation found.

public bool Remove( KeyValuePair<TKey,TValue> item )

😔 No documentation found.

public bool IsReadOnly { get; }

😔 No documentation found.

public int Count { get; }

😔 No documentation found.

public void CopyTo( KeyValuePair<TKey,TValue>[] array, int arrayIndex )

😔 No documentation found.

public bool Contains( KeyValuePair<TKey,TValue> item )

😔 No documentation found.

public void Clear( )

😔 No documentation found.

public void Add( KeyValuePair<TKey,TValue> item )

😔 No documentation found.

public TValue Item { get; set; }

😔 No documentation found.

public ICollection<TValue> Values { get; }

😔 No documentation found.

public bool TryGetValue( TKey key, ref TValue value )

😔 No documentation found.

public bool Remove( TKey key )

😔 No documentation found.

public ICollection<TKey> Keys { get; }

😔 No documentation found.

public bool ContainsKey( TKey key )

😔 No documentation found.

public ObservableDictionary<TKey,TValue>( IDictionary<TKey,TValue> dictionary, IEqualityComparer<TKey> comparer )

😔 No documentation found.

public void Add( TKey key, TValue value )

😔 No documentation found.