CodeTryCatchFinallyStatement Constructor (array<CodeStatement^>^, array<CodeCatchClause^>^, array<CodeStatement^>^)
.NET Framework (current version)
Initializes a new instance of the CodeTryCatchFinallyStatement class using the specified statements for try, catch clauses, and finally statements.
Assembly: System (in System.dll)
public: CodeTryCatchFinallyStatement( array<CodeStatement^>^ tryStatements, array<CodeCatchClause^>^ catchClauses, array<CodeStatement^>^ finallyStatements )
Parameters
- tryStatements
-
Type:
array<System.CodeDom::CodeStatement^>^
An array of CodeStatement objects that indicate the statements to try.
- catchClauses
-
Type:
array<System.CodeDom::CodeCatchClause^>^
An array of CodeCatchClause objects that indicate the clauses to catch.
- finallyStatements
-
Type:
array<System.CodeDom::CodeStatement^>^
An array of CodeStatement objects that indicate the finally statements to use.
.NET Framework
Available since 1.1
Available since 1.1
Show: