An action with three arguments.
Namespace:
Gallio.CommonAssembly: Gallio (in Gallio.dll) Version: 3.3.0.0 (3.3.459.0)
Syntax
| C# |
|---|
public delegate void Action<T1, T2, T3>( T1 arg1, T2 arg2, T3 arg3 ) |
| Visual Basic (Declaration) |
|---|
Public Delegate Sub Action(Of T1, T2, T3) ( _ arg1 As T1, _ arg2 As T2, _ arg3 As T3 _ ) |
Parameters
- arg1
- Type: T1
The first argument.
- arg2
- Type: T2
The second argument.
- arg3
- Type: T3
The third argument.
Type Parameters
- T1
- The first argument type.
- T2
- The second argument type.
- T3
- The third argument type.
