Delegate CollectionItemChangedHandler<T>
- Namespace
- Alternet.Base.Collections
- Assembly
- Alternet.UI.Common.dll
Represents the method that will handle an event when collection is changed.
public delegate void CollectionItemChangedHandler<T>(object? sender, int index, T item)
Parameters
senderobjectThe source of the event.
indexintThe index where the change occurred.
itemTThe item affected by the change.
Type Parameters
TThe type of the item.