Udostępnij za pośrednictwem


CodeTryCatchFinallyStatement Konstruktory

Definicja

Inicjuje nowe wystąpienie klasy CodeTryCatchFinallyStatement.

Przeciążenia

CodeTryCatchFinallyStatement()

Inicjuje nowe wystąpienie klasy CodeTryCatchFinallyStatement.

CodeTryCatchFinallyStatement(CodeStatement[], CodeCatchClause[])

Inicjuje CodeTryCatchFinallyStatement nowe wystąpienie klasy przy użyciu określonych instrukcji dla klauzul try i catch.

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

Inicjuje CodeTryCatchFinallyStatement nowe wystąpienie klasy przy użyciu określonych instrukcji try, catch klauzul i na koniec instrukcji.

CodeTryCatchFinallyStatement()

Źródło:
CodeTryCatchFinallyStatement.cs
Źródło:
CodeTryCatchFinallyStatement.cs
Źródło:
CodeTryCatchFinallyStatement.cs

Inicjuje nowe wystąpienie klasy CodeTryCatchFinallyStatement.

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

Dotyczy

CodeTryCatchFinallyStatement(CodeStatement[], CodeCatchClause[])

Źródło:
CodeTryCatchFinallyStatement.cs
Źródło:
CodeTryCatchFinallyStatement.cs
Źródło:
CodeTryCatchFinallyStatement.cs

Inicjuje CodeTryCatchFinallyStatement nowe wystąpienie klasy przy użyciu określonych instrukcji dla klauzul try i catch.

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())

Parametry

tryStatements
CodeStatement[]

Tablica obiektów wskazująca CodeStatement instrukcje do wypróbowania.

catchClauses
CodeCatchClause[]

Tablica obiektów wskazująca CodeCatchClause klauzule do przechwycenia.

Dotyczy

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

Źródło:
CodeTryCatchFinallyStatement.cs
Źródło:
CodeTryCatchFinallyStatement.cs
Źródło:
CodeTryCatchFinallyStatement.cs

Inicjuje CodeTryCatchFinallyStatement nowe wystąpienie klasy przy użyciu określonych instrukcji try, catch klauzul i na koniec instrukcji.

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())

Parametry

tryStatements
CodeStatement[]

Tablica obiektów wskazująca CodeStatement instrukcje do wypróbowania.

catchClauses
CodeCatchClause[]

Tablica obiektów wskazująca CodeCatchClause klauzule do przechwycenia.

finallyStatements
CodeStatement[]

Tablica obiektów wskazująca CodeStatement instrukcje na koniec do użycia.

Dotyczy