Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/09/10 03:22:58 (14 years ago)
Author:
swagner
Message:

Worked on HeuristicLab.Collections (#819)

  • removed implementation of IDisposable
  • added read-only wrappers
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Collections/3.3/IObservableDictionary.cs

    r2574 r2618  
    2626
    2727namespace HeuristicLab.Collections {
    28   public interface IObservableDictionary<TKey, TValue> : IDictionary<TKey, TValue>, IObservableCollection<KeyValuePair<TKey, TValue>> {
     28  public interface IObservableDictionary<TKey, TValue> : IDictionary<TKey, TValue> {
     29    event CollectionItemsChangedEventHandler<KeyValuePair<TKey, TValue>> ItemsAdded;
     30    event CollectionItemsChangedEventHandler<KeyValuePair<TKey, TValue>> ItemsRemoved;
    2931    event CollectionItemsChangedEventHandler<KeyValuePair<TKey, TValue>> ItemsReplaced;
     32    event CollectionItemsChangedEventHandler<KeyValuePair<TKey, TValue>> CollectionReset;
    3033  }
    3134}
Note: See TracChangeset for help on using the changeset viewer.