Delegate Procedure<A>
Represents a static procedure with arbitrary number of arguments allocated on the stack.
Namespace: DotNext
Assembly: DotNext.Reflection.dll
Syntax
public delegate void Procedure<A>(in A arguments)
where A : struct;
Parameters
| Type | Name | Description |
|---|---|---|
| A | arguments | Procedure arguments in the form of public structure fields. |
Type Parameters
| Name | Description |
|---|---|
| A | Type of structure with procedure arguments allocated on the stack. |