ImplementationEventHandler<T> Delegate

Handles events related to the adding and removing of implementations.

Definition

Namespace: Numerics.NET.Providers
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public delegate void ImplementationEventHandler<T>(
	Object? sender,
	ImplementationEventArgs<T> e
)
where T : IImplementation

Parameters

sender  Object
The object that is raising the event.
e  ImplementationEventArgs<T>
Event-specific data.

Type Parameters

T
The type of the implementation.

See Also