Table of Contents

Delegate EventHandler<TSender, TEvent>

Namespace
Sdl3Sharp.Events
Assembly
Sdl3Sharp.dll

Represents a method that handles events of a specific type from a specific sender

public delegate void EventHandler<in TSender, TEvent>(TSender sender, ref readonly TEvent @event)

Parameters

sender TSender

The sender of the event

event TEvent

The event to handle

Type Parameters

TSender

The type of the sender

TEvent

The type of event to handle