Delegate Procedure<T, A>
Represents an instance procedure with arbitrary number of arguments allocated on the stack.
Namespace: DotNext
Assembly: DotNext.Reflection.dll
Syntax
public delegate void Procedure<T, A>(in T this, in A arguments)
where A : struct;
Parameters
| Type | Name | Description |
|---|---|---|
| T | this | Hidden |
| A | arguments | Procedure arguments in the form of public structure fields. |
Type Parameters
| Name | Description |
|---|---|
| T | Type of instance to be passed into underlying method. |
| A | Type of structure with procedure arguments allocated on the stack. |