Delegate Function<A, R>
Represents a static function with arbitrary number of arguments allocated on the stack.
Namespace: DotNext
Assembly: DotNext.Reflection.dll
Syntax
public delegate R Function<A, out R>(in A arguments)
where A : struct;
Parameters
| Type | Name | Description |
|---|---|---|
| A | arguments | Function arguments in the form of public structure fields. |
Returns
| Type | Description |
|---|---|
| R | Function return value. |
Type Parameters
| Name | Description |
|---|---|
| A | Type of structure with function arguments allocated on the stack. |
| R | Type of function return value. |