Interface Action2<T1,T2>
Interface which defines action which accepts two arguments
Namespace:
Assembly: .dll
Syntax
public interface Action2<T1,T2>
Type Parameters
| Name | Description |
|---|---|
| T1 | |
| T2 |
Methods
execute(T1 arg1, T2 arg2)
Executes action with specified params
Declaration
public abstract void execute(T1 arg1, T2 arg2)
Parameters
| Type | Name | Description |
|---|---|---|
| T1 | arg1 | First argument for action |
| T2 | arg2 | Second argument for action |