ICSharpCode.NRefactory.Ast.TryCatchStatement.TryCatchStatement C# (CSharp) Method

TryCatchStatement() public method

public TryCatchStatement ( ICSharpCode.NRefactory.Ast.Statement statementBlock, List catchClauses, ICSharpCode.NRefactory.Ast.Statement finallyBlock ) : System
statementBlock ICSharpCode.NRefactory.Ast.Statement
catchClauses List
finallyBlock ICSharpCode.NRefactory.Ast.Statement
return System
        public TryCatchStatement(Statement statementBlock, List<CatchClause> catchClauses, Statement finallyBlock)
        {
            StatementBlock = statementBlock;
            CatchClauses = catchClauses;
            FinallyBlock = finallyBlock;
        }