Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKB/HeuristicLab.BackgroundProcessing/ObservableEnumerable.cs @ 4311

Last change on this file since 4311 was 4311, checked in by swagner, 14 years ago

Integrated OKB clients for HL 3.3 (#1166)

File size: 465 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Collections.Specialized;
4using System.Collections;
5
6namespace HeuristicLab.BackgroundProcessing {
7  /// <summary>
8  /// Combines <code>IEnumerable&gt;T&lt;"/></code> and <code>INotifyCollectionChanged</code> into
9  /// a single interface.
10  /// </summary>
11  /// <typeparam name="T"></typeparam>
12  public interface IObservableEnumerable<T> : IEnumerable<T>, INotifyCollectionChanged { }
13}
Note: See TracBrowser for help on using the repository browser.