Interface Func1<T,TResult>
Interface which defines function with one argument
Namespace:
Assembly: .dll
Syntax
public interface Func1<T,TResult>
Type Parameters
| Name | Description |
|---|---|
| T | |
| TResult |
Methods
func(T arg)
Executes function with specified argument
Declaration
public abstract TResult func(T arg)
Parameters
| Type | Name | Description |
|---|---|---|
| T | arg | Argument for function |
Returns
| Type | Description |
|---|---|
| TResult | Result of function |