The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
CodeCommentStatementCollection::AddRange Method (CodeCommentStatementCollection^)
.NET Framework (current version)
Copies the contents of another CodeCommentStatementCollection object to the end of the collection.
Assembly: System (in System.dll)
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
Available since 1.1
Show: