CodeTryCatchFinallyStatement Konstruktory

Definicja

Inicjuje nowe wystąpienie klasy CodeTryCatchFinallyStatement.

Przeciążenia

Nazwa Opis
CodeTryCatchFinallyStatement()

Inicjuje nowe wystąpienie klasy CodeTryCatchFinallyStatement.

CodeTryCatchFinallyStatement(CodeStatement[], CodeCatchClause[])

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

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

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

CodeTryCatchFinallyStatement()

Źródło:
CodeTryCatchFinallyStatement.cs
Źródło:
CodeTryCatchFinallyStatement.cs
Źródło:
CodeTryCatchFinallyStatement.cs
Źródło:
CodeTryCatchFinallyStatement.cs
Ź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
Źródło:
CodeTryCatchFinallyStatement.cs
Źródło:
CodeTryCatchFinallyStatement.cs
Źródło:
CodeTryCatchFinallyStatement.cs
Źródło:
CodeTryCatchFinallyStatement.cs

Inicjuje nowe wystąpienie CodeTryCatchFinallyStatement 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 CodeStatement obiektów wskazująca instrukcje do wypróbowania.

catchClauses
CodeCatchClause[]

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

Dotyczy

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

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

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

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 CodeStatement obiektów wskazująca instrukcje do wypróbowania.

catchClauses
CodeCatchClause[]

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

finallyStatements
CodeStatement[]

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

Dotyczy