CodeCommentStatementCollection.AddRange 메서드

정의

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

오버로드

Name Description
AddRange(CodeCommentStatement[])

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

AddRange(CodeCommentStatementCollection)

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

AddRange(CodeCommentStatement[])

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

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

매개 변수

value
CodeCommentStatement[]

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

예외

valuenull입니다.

예제

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

// Adds an array of CodeCommentStatement objects to the collection.
CodeCommentStatement[] comments = { new CodeCommentStatement("Test comment"), new CodeCommentStatement("Another test comment") };
collection.AddRange( comments );

// Adds a collection of CodeCommentStatement objects to the collection.
CodeCommentStatementCollection commentsCollection = new CodeCommentStatementCollection();
commentsCollection.Add( new CodeCommentStatement("Test comment") );
commentsCollection.Add( new CodeCommentStatement("Another test comment") );
collection.AddRange( commentsCollection );
' Adds an array of CodeCommentStatement objects to the collection.
Dim comments As CodeCommentStatement() = {New CodeCommentStatement("Test comment"), New CodeCommentStatement("Another test comment")}
collection.AddRange(comments)

' Adds a collection of CodeCommentStatement objects to the 
' collection.
Dim commentsCollection As New CodeCommentStatementCollection()
commentsCollection.Add(New CodeCommentStatement("Test comment"))
commentsCollection.Add(New CodeCommentStatement("Another test comment"))
collection.AddRange(commentsCollection)

추가 정보

적용 대상

AddRange(CodeCommentStatementCollection)

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

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

매개 변수

value
CodeCommentStatementCollection

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

예외

valuenull입니다.

예제

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

// Adds an array of CodeCommentStatement objects to the collection.
CodeCommentStatement[] comments = { new CodeCommentStatement("Test comment"), new CodeCommentStatement("Another test comment") };
collection.AddRange( comments );

// Adds a collection of CodeCommentStatement objects to the collection.
CodeCommentStatementCollection commentsCollection = new CodeCommentStatementCollection();
commentsCollection.Add( new CodeCommentStatement("Test comment") );
commentsCollection.Add( new CodeCommentStatement("Another test comment") );
collection.AddRange( commentsCollection );
' Adds an array of CodeCommentStatement objects to the collection.
Dim comments As CodeCommentStatement() = {New CodeCommentStatement("Test comment"), New CodeCommentStatement("Another test comment")}
collection.AddRange(comments)

' Adds a collection of CodeCommentStatement objects to the 
' collection.
Dim commentsCollection As New CodeCommentStatementCollection()
commentsCollection.Add(New CodeCommentStatement("Test comment"))
commentsCollection.Add(New CodeCommentStatement("Another test comment"))
collection.AddRange(commentsCollection)

추가 정보

적용 대상