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
sender
objectThe source of the event.
index
intThe index where the change occurred.
item
TThe item affected by the change.
Type Parameters
T
The type of the item.