Files
mRemoteNG/mRemoteV1/Tools/CustomCollections/INotifyCollectionUpdated.cs
David Sparer d003e086bb created a class and event type for handling collections that need to raise events for collection changes and child updates
this is for cases where you would like to have INotifyCollectionChanged and INotifyPropertyChanged implemented, but dont need the level of detail that those types provide.
2017-02-13 13:56:58 -07:00

9 lines
203 B
C#

using System;
namespace mRemoteNG.Tools.CustomCollections
{
public interface INotifyCollectionUpdated<T>
{
event EventHandler<CollectionUpdatedEventArgs<T>> CollectionUpdated;
}
}