Rev | Line | |
---|
[4311] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Collections.Specialized;
|
---|
| 4 | using System.Collections;
|
---|
| 5 |
|
---|
| 6 | namespace HeuristicLab.BackgroundProcessing {
|
---|
| 7 | /// <summary>
|
---|
| 8 | /// Combines <code>IEnumerable>T<"/></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.