Delegate ILGeneratorExtensions.ForBlock
Defines a delegate that describes a for block.
Namespace: TheXDS.MCART.Types.Extensions
Assembly: MCART.TypeFactory.dll
Syntax
public delegate void ILGeneratorExtensions.ForBlock(ILGenerator il, LocalBuilder accumulator, Label @break, Label next)
Parameters
| Type | Name | Description |
|---|---|---|
| ILGenerator | il | Reference to the instruction generator where the for block code is inserted. |
| LocalBuilder | accumulator | Reference to the loop accumulator. |
| Label | break | Exit label for the for block. |
| Label | next | Continuation label for the for block. |