DotNetWebToolkit.Cil2Js.Ast.StmtTry.StmtTry C# (CSharp) Method

StmtTry() public method

public StmtTry ( Ctx ctx, Instruction @try, Instruction @catch, Instruction @finally, TypeReference catchType ) : System
ctx Ctx
@try Mono.Cecil.Cil.Instruction
@catch Mono.Cecil.Cil.Instruction
@finally Mono.Cecil.Cil.Instruction
catchType Mono.Cecil.TypeReference
return System
        public StmtTry(Ctx ctx, Instruction @try, Instruction @catch, Instruction @finally, TypeReference catchType)
            : base(ctx) {
            this.@try = @try;
            this.@catch = @catch;
            this.@finally = @finally;
            this.catchType = catchType;
        }

Same methods

StmtTry::StmtTry ( Ctx ctx, Stmt @try, IEnumerable catches, Stmt @finally ) : System