다음을 통해 공유


CodeCatchClauseCollection.Add(CodeCatchClause) 메서드

정의

지정된 CodeCatchClause 개체를 컬렉션에 추가합니다.

public:
 int Add(System::CodeDom::CodeCatchClause ^ value);
public int Add (System.CodeDom.CodeCatchClause value);
member this.Add : System.CodeDom.CodeCatchClause -> int
Public Function Add (value As CodeCatchClause) As Integer

매개 변수

value
CodeCatchClause

추가할 CodeCatchClause 개체입니다.

반환

새 요소가 삽입된 인덱스입니다.

예제

다음 예제에서는 개체 CodeCatchClauseCollection 를 instance 추가하는 CodeCatchClause 방법을 보여 줍니다.

// Adds a CodeCatchClause to the collection.
collection->Add( gcnew CodeCatchClause( "e" ) );
// Adds a CodeCatchClause to the collection.
collection.Add( new CodeCatchClause("e") );
' Adds a CodeCatchClause to the collection.
collection.Add(New CodeCatchClause("e"))

적용 대상

추가 정보