Jurassic.Compiler.DynamicILGenerator.EndFinally C# (CSharp) 메소드

EndFinally() 공개 메소드

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
리턴 void
        public override void EndFinally()
        {
            Emit1ByteOpCode(0xDC, 0, 0);
            UnconditionalBranch();
        }
DynamicILGenerator