CodeAttributeDeclarationCollection::AddRange Method (CodeAttributeDeclarationCollection^)
.NET Framework (current version)
Copies the contents of another CodeAttributeDeclarationCollection object to the end of the collection.
Assembly: System (in System.dll)
Parameters
- value
-
Type:
System.CodeDom::CodeAttributeDeclarationCollection^
A CodeAttributeDeclarationCollection that contains the objects to add to the collection.
| Exception | Condition |
|---|---|
| ArgumentNullException | value is null. |
The following example demonstrates how to use the AddRange(CodeAttributeDeclarationCollection^) method overload to add the members of one CodeAttributeDeclarationCollection to another.
// Adds an array of CodeAttributeDeclaration objects // to the collection. array<CodeAttributeDeclaration^>^declarations = {gcnew CodeAttributeDeclaration,gcnew CodeAttributeDeclaration}; collection->AddRange( declarations ); // Adds a collection of CodeAttributeDeclaration objects // to the collection. CodeAttributeDeclarationCollection^ declarationsCollection = gcnew CodeAttributeDeclarationCollection; array<CodeAttributeArgument^>^temp1 = {gcnew CodeAttributeArgument( gcnew CodePrimitiveExpression( "Test Description" ) )}; declarationsCollection->Add( gcnew CodeAttributeDeclaration( "DescriptionAttribute",temp1 ) ); array<CodeAttributeArgument^>^temp2 = {gcnew CodeAttributeArgument( gcnew CodePrimitiveExpression( true ) )}; declarationsCollection->Add( gcnew CodeAttributeDeclaration( "BrowsableAttribute",temp2 ) ); collection->AddRange( declarationsCollection );
.NET Framework
Available since 1.1
Available since 1.1
Show: