An action with two arguments.

Namespace:  Gallio.Common
Assembly:  Gallio (in Gallio.dll) Version: 3.3.0.0 (3.3.459.0)

Syntax

C#
public delegate void Action<T1, T2>(
	T1 arg1,
	T2 arg2
)
Visual Basic (Declaration)
Public Delegate Sub Action(Of T1, T2) ( _
	arg1 As T1, _
	arg2 As T2 _
)

Parameters

arg1
Type: T1
The first argument.
arg2
Type: T2
The second argument.

Type Parameters

T1
The first argument type.
T2
The second argument type.

See Also