CodeCatchClauseCollection.AddRange 메서드

정의

지정된 CodeCatchClause 배열의 요소를 컬렉션의 끝에 복사합니다.

오버로드

Name Description
AddRange(CodeCatchClause[])

지정된 CodeCatchClause 배열의 요소를 컬렉션의 끝에 복사합니다.

AddRange(CodeCatchClauseCollection)

다른 CodeCatchClauseCollection 개체의 내용을 컬렉션의 끝에 복사합니다.

AddRange(CodeCatchClause[])

지정된 CodeCatchClause 배열의 요소를 컬렉션의 끝에 복사합니다.

public:
 void AddRange(cli::array <System::CodeDom::CodeCatchClause ^> ^ value);
public void AddRange(System.CodeDom.CodeCatchClause[] value);
member this.AddRange : System.CodeDom.CodeCatchClause[] -> unit
Public Sub AddRange (value As CodeCatchClause())

매개 변수

value
CodeCatchClause[]

컬렉션에 추가할 개체를 포함하는 형식 CodeCatchClause 의 배열입니다.

예외

valuenull입니다.

예제

다음 예제에서는 메서드 오버로드를 AddRange(CodeCatchClause[]) 사용하여 개체 CodeCatchClauseCollection배열의 CodeCatchClause 멤버를 에 추가하는 방법을 보여 줍니다.

// Adds an array of CodeCatchClause objects to the collection.
CodeCatchClause[] clauses = { new CodeCatchClause(), new CodeCatchClause() };
collection.AddRange( clauses );

// Adds a collection of CodeCatchClause objects to the collection.
CodeCatchClauseCollection clausesCollection = new CodeCatchClauseCollection();
clausesCollection.Add( new CodeCatchClause("e", new CodeTypeReference(typeof(System.ArgumentOutOfRangeException))) );
clausesCollection.Add( new CodeCatchClause("e") );
collection.AddRange( clausesCollection );
' Adds an array of CodeCatchClause objects to the collection.
Dim clauses As CodeCatchClause() = {New CodeCatchClause(), New CodeCatchClause()}
collection.AddRange(clauses)

' Adds a collection of CodeCatchClause objects to the collection.
Dim clausesCollection As New CodeCatchClauseCollection()
clausesCollection.Add(New CodeCatchClause("e", New CodeTypeReference(GetType(System.ArgumentOutOfRangeException))))
clausesCollection.Add(New CodeCatchClause("e"))
collection.AddRange(clausesCollection)

추가 정보

적용 대상

AddRange(CodeCatchClauseCollection)

다른 CodeCatchClauseCollection 개체의 내용을 컬렉션의 끝에 복사합니다.

public:
 void AddRange(System::CodeDom::CodeCatchClauseCollection ^ value);
public void AddRange(System.CodeDom.CodeCatchClauseCollection value);
member this.AddRange : System.CodeDom.CodeCatchClauseCollection -> unit
Public Sub AddRange (value As CodeCatchClauseCollection)

매개 변수

value
CodeCatchClauseCollection

CodeCatchClauseCollection 컬렉션에 추가할 개체를 포함하는 A입니다.

예외

valuenull입니다.

예제

다음 예제에서는 메서드 오버로드를 AddRange(CodeCatchClauseCollection) 사용하여 한 CodeCatchClauseCollection 개체의 멤버를 다른 CodeCatchClauseCollection개체에 추가하는 방법을 보여 줍니다.

// Adds an array of CodeCatchClause objects to the collection.
CodeCatchClause[] clauses = { new CodeCatchClause(), new CodeCatchClause() };
collection.AddRange( clauses );

// Adds a collection of CodeCatchClause objects to the collection.
CodeCatchClauseCollection clausesCollection = new CodeCatchClauseCollection();
clausesCollection.Add( new CodeCatchClause("e", new CodeTypeReference(typeof(System.ArgumentOutOfRangeException))) );
clausesCollection.Add( new CodeCatchClause("e") );
collection.AddRange( clausesCollection );
' Adds an array of CodeCatchClause objects to the collection.
Dim clauses As CodeCatchClause() = {New CodeCatchClause(), New CodeCatchClause()}
collection.AddRange(clauses)

' Adds a collection of CodeCatchClause objects to the collection.
Dim clausesCollection As New CodeCatchClauseCollection()
clausesCollection.Add(New CodeCatchClause("e", New CodeTypeReference(GetType(System.ArgumentOutOfRangeException))))
clausesCollection.Add(New CodeCatchClause("e"))
collection.AddRange(clausesCollection)

추가 정보

적용 대상