Initializes a new instance of CodeTryCatchFinallyStatement.
Initializes a new instance of CodeTryCatchFinallyStatement.
[Visual Basic] Overloads Public Sub New()
[C#] public CodeTryCatchFinallyStatement();
[C++] public: CodeTryCatchFinallyStatement();
[JScript] public function CodeTryCatchFinallyStatement();
Initializes a new instance of CodeTryCatchFinallyStatement. using the specified statements to try and catch clauses.
[Visual Basic] Overloads Public Sub New(CodeStatement(), CodeCatchClause())
[C#] public CodeTryCatchFinallyStatement(CodeStatement[], CodeCatchClause[]);
[C++] public: CodeTryCatchFinallyStatement(CodeStatement*[], CodeCatchClause[]);
[JScript] public function CodeTryCatchFinallyStatement(CodeStatement[], CodeCatchClause[]);
Initializes a new instance of CodeTryCatchFinallyStatement. using the specified statements to try, catch clauses, and finally statements.
[Visual Basic] Overloads Public Sub New(CodeStatement(), CodeCatchClause(), CodeStatement())
[C#] public CodeTryCatchFinallyStatement(CodeStatement[], CodeCatchClause[], CodeStatement[]);
[C++] public: CodeTryCatchFinallyStatement(CodeStatement*[], CodeCatchClause[], CodeStatement*[]);
[JScript] public function CodeTryCatchFinallyStatement(CodeStatement[], CodeCatchClause[], CodeStatement[]);
CodeTryCatchFinallyStatement Class | CodeTryCatchFinallyStatement Members | System.CodeDOM Namespace