MethodDecorator.Fody.MethodDecorator.GetTryCatchLeaveInstructions C# (CSharp) 메소드

GetTryCatchLeaveInstructions() 개인적인 정적인 메소드

private static GetTryCatchLeaveInstructions ( Mono.Cecil.Cil.ILProcessor processor, Instruction methodBodyReturnInstruction ) : IList
processor Mono.Cecil.Cil.ILProcessor
methodBodyReturnInstruction Mono.Cecil.Cil.Instruction
리턴 IList
        private static IList<Instruction> GetTryCatchLeaveInstructions(ILProcessor processor, Instruction methodBodyReturnInstruction)
        {
            return new[] { processor.Create(OpCodes.Leave_S, methodBodyReturnInstruction) };
        }