Bearbeiten

IInAction<T> Interface

Definition

A contract for actions being executed on items of a specific type, with readonly access.

public interface IInAction<T>
type IInAction<'T> = interface
Public Interface IInAction(Of T)

Type Parameters

T

The type of items to process.

Remarks

If the Invoke(T) method is small enough, it is highly recommended to mark it with AggressiveInlining.

Methods

Name Description
Invoke(T)

Executes the action on a specified T item.

Applies to