System.CodeDom.CodeTryCatchFinallyStatement.CodeTryCatchFinallyStatement C# (CSharp) Method

CodeTryCatchFinallyStatement() public method

public CodeTryCatchFinallyStatement ( CodeStatement tryStatements, CodeCatchClause catchClauses, CodeStatement finallyStatements ) : System.Diagnostics
tryStatements CodeStatement
catchClauses CodeCatchClause
finallyStatements CodeStatement
return System.Diagnostics
        public CodeTryCatchFinallyStatement(CodeStatement[] tryStatements, CodeCatchClause[] catchClauses, CodeStatement[] finallyStatements) {
            TryStatements.AddRange(tryStatements);
            CatchClauses.AddRange(catchClauses);
            FinallyStatements.AddRange(finallyStatements);
        }

Same methods

CodeTryCatchFinallyStatement::CodeTryCatchFinallyStatement ( ) : System.Diagnostics
CodeTryCatchFinallyStatement::CodeTryCatchFinallyStatement ( CodeStatement tryStatements, CodeCatchClause catchClauses ) : System.Diagnostics
CodeTryCatchFinallyStatement