Delegate IlBlockWithExitLabel
Defines a delegate that includes a label used to exit the encompassing block, and a reference to the IL generator used to build the contents of the current method.
Namespace: TheXDS.MCART.Types.Extensions
Assembly: MCART.TypeFactory.dll
Syntax
public delegate void IlBlockWithExitLabel(Label exitLabel, ILGenerator generator)
Parameters
Type | Name | Description |
---|---|---|
Label | exitLabel | Label that points to the end of the encompassing block, generally the end of the method. |
ILGenerator | generator | Reference to the IL generator to be used to generate the contents of the current method. |