Jurassic.Compiler.DynamicILGenerator.EndFinally C# (CSharp) Method

EndFinally() public method

This instruction can be used from within a finally block to resume the exception handling process. It is the only valid way of leaving a finally block.
public EndFinally ( ) : void
return void
        public override void EndFinally()
        {
            Emit1ByteOpCode(0xDC, 0, 0);
            UnconditionalBranch();
        }
DynamicILGenerator