Interface Action1<T>
Interface which defines action which accepts one argument
Namespace:
Assembly: .dll
Syntax
public interface Action1<T>
Type Parameters
Name | Description |
---|---|
T |
Methods
execute(T arg)
Executes action with specified param
Declaration
public abstract void execute(T arg)
Parameters
Type | Name | Description |
---|---|---|
T | arg | Argument for action |