Delegate MyraEventHandler<T>
Represents the method that handles Myra events with specific event argument types.
public delegate void MyraEventHandler<T>(object sender, T e) where T : MyraEventArgs
Parameters
senderobjectThe source of the event.
eTThe event data.
Type Parameters
TThe type of event arguments.