An action with five 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, T4, T5>( T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5 ) |
| Visual Basic (Declaration) |
|---|
Public Delegate Sub Action(Of T1, T2, T3, T4, T5) ( _ arg1 As T1, _ arg2 As T2, _ arg3 As T3, _ arg4 As T4, _ arg5 As T5 _ ) |
Parameters
- arg1
- Type: T1
The first argument.
- arg2
- Type: T2
The second argument.
- arg3
- Type: T3
The third argument.
- arg4
- Type: T4
The fourth argument.
- arg5
- Type: T5
The fifth argument.
Type Parameters
- T1
- The first argument type.
- T2
- The second argument type.
- T3
- The third argument type.
- T4
- The fourth argument type.
- T5
- The fifth argument type.
