ICSharpCode.NRefactory.Ast.TryCatchStatement.TryCatchStatement C# (CSharp) Méthode

TryCatchStatement() public méthode

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
Résultat System
        public TryCatchStatement(Statement statementBlock, List<CatchClause> catchClauses, Statement finallyBlock)
        {
            StatementBlock = statementBlock;
            CatchClauses = catchClauses;
            FinallyBlock = finallyBlock;
        }