CodeCommentStatementCollection::AddRange Method (CodeCommentStatementCollection^)

 

Copies the contents of another CodeCommentStatementCollection object to the end of the collection.

Namespace:   System.CodeDom
Assembly:  System (in System.dll)

public:
void AddRange(
	CodeCommentStatementCollection^ value
)

Parameters

value
Type: System.CodeDom::CodeCommentStatementCollection^

A CodeCommentStatementCollection that contains the objects to add to the collection.

Exception Condition
ArgumentNullException

value is null.

The following example demonstrates how to use the AddRange(CodeCommentStatementCollection^) method overload to add the members of one CodeCommentStatementCollection to another.

// Adds an array of CodeCommentStatement objects to the collection.
array<CodeCommentStatement^>^comments = {gcnew CodeCommentStatement( "Test comment" ),gcnew CodeCommentStatement( "Another test comment" )};
collection->AddRange( comments );

// Adds a collection of CodeCommentStatement objects to the collection.
CodeCommentStatementCollection^ commentsCollection = gcnew CodeCommentStatementCollection;
commentsCollection->Add( gcnew CodeCommentStatement( "Test comment" ) );
commentsCollection->Add( gcnew CodeCommentStatement( "Another test comment" ) );
collection->AddRange( commentsCollection );

.NET Framework
Available since 1.1
Return to top
Show: