共用方式為


CodeTryCatchFinallyStatement 建構函式

定義

初始化 CodeTryCatchFinallyStatement 類別的新實例。

多載

CodeTryCatchFinallyStatement()

初始化 CodeTryCatchFinallyStatement 類別的新實例。

CodeTryCatchFinallyStatement(CodeStatement[], CodeCatchClause[])

使用 try 和 catch 子句的指定語句,初始化 CodeTryCatchFinallyStatement 類別的新實例。

CodeTryCatchFinallyStatement(CodeStatement[], CodeCatchClause[], CodeStatement[])

使用 try、catch 子句和 finally 語句的指定語句,初始化 CodeTryCatchFinallyStatement 類別的新實例。

CodeTryCatchFinallyStatement()

來源:
CodeTryCatchFinallyStatement.cs
來源:
CodeTryCatchFinallyStatement.cs
來源:
CodeTryCatchFinallyStatement.cs
來源:
CodeTryCatchFinallyStatement.cs

初始化 CodeTryCatchFinallyStatement 類別的新實例。

public:
 CodeTryCatchFinallyStatement();
public CodeTryCatchFinallyStatement ();
Public Sub New ()

適用於

CodeTryCatchFinallyStatement(CodeStatement[], CodeCatchClause[])

來源:
CodeTryCatchFinallyStatement.cs
來源:
CodeTryCatchFinallyStatement.cs
來源:
CodeTryCatchFinallyStatement.cs
來源:
CodeTryCatchFinallyStatement.cs

使用 try 和 catch 子句的指定語句,初始化 CodeTryCatchFinallyStatement 類別的新實例。

public:
 CodeTryCatchFinallyStatement(cli::array <System::CodeDom::CodeStatement ^> ^ tryStatements, cli::array <System::CodeDom::CodeCatchClause ^> ^ catchClauses);
public CodeTryCatchFinallyStatement (System.CodeDom.CodeStatement[] tryStatements, System.CodeDom.CodeCatchClause[] catchClauses);
new System.CodeDom.CodeTryCatchFinallyStatement : System.CodeDom.CodeStatement[] * System.CodeDom.CodeCatchClause[] -> System.CodeDom.CodeTryCatchFinallyStatement
Public Sub New (tryStatements As CodeStatement(), catchClauses As CodeCatchClause())

參數

tryStatements
CodeStatement[]

CodeStatement 對象的陣列,表示要嘗試的語句。

catchClauses
CodeCatchClause[]

CodeCatchClause 對象的陣列,表示要攔截的 子句。

適用於

CodeTryCatchFinallyStatement(CodeStatement[], CodeCatchClause[], CodeStatement[])

來源:
CodeTryCatchFinallyStatement.cs
來源:
CodeTryCatchFinallyStatement.cs
來源:
CodeTryCatchFinallyStatement.cs
來源:
CodeTryCatchFinallyStatement.cs

使用 try、catch 子句和 finally 語句的指定語句,初始化 CodeTryCatchFinallyStatement 類別的新實例。

public:
 CodeTryCatchFinallyStatement(cli::array <System::CodeDom::CodeStatement ^> ^ tryStatements, cli::array <System::CodeDom::CodeCatchClause ^> ^ catchClauses, cli::array <System::CodeDom::CodeStatement ^> ^ finallyStatements);
public CodeTryCatchFinallyStatement (System.CodeDom.CodeStatement[] tryStatements, System.CodeDom.CodeCatchClause[] catchClauses, System.CodeDom.CodeStatement[] finallyStatements);
new System.CodeDom.CodeTryCatchFinallyStatement : System.CodeDom.CodeStatement[] * System.CodeDom.CodeCatchClause[] * System.CodeDom.CodeStatement[] -> System.CodeDom.CodeTryCatchFinallyStatement
Public Sub New (tryStatements As CodeStatement(), catchClauses As CodeCatchClause(), finallyStatements As CodeStatement())

參數

tryStatements
CodeStatement[]

CodeStatement 對象的陣列,表示要嘗試的語句。

catchClauses
CodeCatchClause[]

CodeCatchClause 對象的陣列,表示要攔截的 子句。

finallyStatements
CodeStatement[]

CodeStatement 對象的陣列,表示要使用的 finally 語句。

適用於