Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.BackgroundProcessing/3.2/ObservableEnumerable.cs @ 2404

Last change on this file since 2404 was 2404, checked in by epitzer, 15 years ago

Move BackgroundProcessing Project into version subfolder. (#769)

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