CodeTryCatchFinallyStatement 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
CodeTryCatchFinallyStatement 클래스의 새 인스턴스를 초기화합니다.
오버로드
CodeTryCatchFinallyStatement() |
CodeTryCatchFinallyStatement 클래스의 새 인스턴스를 초기화합니다. |
CodeTryCatchFinallyStatement(CodeStatement[], CodeCatchClause[]) |
try 및 catch 절에 대해 지정한 문을 사용하여 CodeTryCatchFinallyStatement 클래스의 새 인스턴스를 초기화합니다. |
CodeTryCatchFinallyStatement(CodeStatement[], CodeCatchClause[], CodeStatement[]) |
try 절, catch 절 및 finally 문에 대해 지정한 문을 사용하여 CodeTryCatchFinallyStatement 클래스의 새 인스턴스를 초기화합니다. |
CodeTryCatchFinallyStatement()
CodeTryCatchFinallyStatement 클래스의 새 인스턴스를 초기화합니다.
public:
CodeTryCatchFinallyStatement();
public CodeTryCatchFinallyStatement ();
Public Sub New ()
적용 대상
CodeTryCatchFinallyStatement(CodeStatement[], CodeCatchClause[])
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[])
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 개체의 배열입니다.
적용 대상
.NET