Share via


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 クラスの新しいインスタンスを初期化します。

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

適用対象

CodeTryCatchFinallyStatement(CodeStatement[], CodeCatchClause[])

ソース:
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

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[]

使用する finally ステートメントを示す CodeStatement オブジェクトの配列。

適用対象