Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/11/10 03:55:51 (15 years ago)
Author:
swagner
Message:

Implemented INotifyPropertyChanged in all observable collections (#819)

File:
1 edited

Legend:

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

    r2618 r2620  
    2424using System.Linq;
    2525using System.Text;
     26using System.ComponentModel;
    2627
    2728namespace HeuristicLab.Collections {
    28   public interface IObservableKeyedCollection<TKey, TItem> : ICollection<TItem> {
     29  public interface IObservableKeyedCollection<TKey, TItem> : ICollection<TItem>, INotifyPropertyChanged {
    2930    TItem this[TKey key] { get; }
    3031
Note: See TracChangeset for help on using the changeset viewer.