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