Table of Contents

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 object

The source of the event.

index int

The index where the change occurred.

item T

The item affected by the change.

Type Parameters

T

The type of the item.