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

CodeTryCatchFinallyStatement クラスの新しいインスタンスを初期化します。

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

適用対象

CodeTryCatchFinallyStatement(CodeStatement[], CodeCatchClause[])

ソース:
CodeTryCatchFinallyStatement.cs
ソース:
CodeTryCatchFinallyStatement.cs
ソース:
CodeTryCatchFinallyStatement.cs
ソース:
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
ソース:
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 オブジェクトの配列。

適用対象