IObservableCollection was internal - fixed

git-svn-id: file:///srv/devel/repo-conversion/nusu@135 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
Markus Ewald 2009-05-06 18:42:08 +00:00
parent 7e9e0e2bf1
commit d845b08a91

View File

@ -26,7 +26,7 @@ namespace Nuclex.Support.Collections {
/// <summary>Interface for collections that can be observed</summary>
/// <typeparam name="ItemType">Type of items managed in the collection</typeparam>
interface IObservableCollection<ItemType> {
public interface IObservableCollection<ItemType> {
/// <summary>Raised when an item has been added to the collection</summary>
event EventHandler<ItemEventArgs<ItemType>> ItemAdded;