다음을 통해 공유


CodeTryCatchFinallyStatement 생성자

정의

CodeTryCatchFinallyStatement 클래스의 새 인스턴스를 초기화합니다.

오버로드

CodeTryCatchFinallyStatement()

CodeTryCatchFinallyStatement 클래스의 새 인스턴스를 초기화합니다.

CodeTryCatchFinallyStatement(CodeStatement[], CodeCatchClause[])

try 및 catch 절에 대해 지정한 문을 사용하여 CodeTryCatchFinallyStatement 클래스의 새 인스턴스를 초기화합니다.

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

try 절, catch 절 및 finally 문에 대해 지정한 문을 사용하여 CodeTryCatchFinallyStatement 클래스의 새 인스턴스를 초기화합니다.

CodeTryCatchFinallyStatement()

Source:
CodeTryCatchFinallyStatement.cs
Source:
CodeTryCatchFinallyStatement.cs
Source:
CodeTryCatchFinallyStatement.cs

CodeTryCatchFinallyStatement 클래스의 새 인스턴스를 초기화합니다.

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

적용 대상

CodeTryCatchFinallyStatement(CodeStatement[], CodeCatchClause[])

Source:
CodeTryCatchFinallyStatement.cs
Source:
CodeTryCatchFinallyStatement.cs
Source:
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[]

try할 문을 나타내는 CodeStatement 개체의 배열입니다.

catchClauses
CodeCatchClause[]

catch할 절을 나타내는 CodeCatchClause 개체의 배열입니다.

적용 대상

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

Source:
CodeTryCatchFinallyStatement.cs
Source:
CodeTryCatchFinallyStatement.cs
Source:
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[]

try할 문을 나타내는 CodeStatement 개체의 배열입니다.

catchClauses
CodeCatchClause[]

catch할 절을 나타내는 CodeCatchClause 개체의 배열입니다.

finallyStatements
CodeStatement[]

사용할 finally 문을 나타내는 CodeStatement 개체의 배열입니다.

적용 대상