Delegate Procedure<T, TArgs>
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, TArgs>(in T this, in TArgs arguments)
where TArgs : struct;
Parameters
| Type | Name | Description |
|---|---|---|
| T | this | Hidden |
| TArgs | arguments | Procedure arguments in the form of public structure fields. |
Type Parameters
| Name | Description |
|---|---|
| T | Type of instance to be passed into underlying method. |
| TArgs | Type of structure with procedure arguments allocated on the stack. |