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.
CodeTypeReferenceCollection::AddRange Method (CodeTypeReferenceCollection^)
.NET Framework (current version)
Adds the contents of the specified CodeTypeReferenceCollection to the end of the collection.
Assembly: System (in System.dll)
Parameters
- value
-
Type:
System.CodeDom::CodeTypeReferenceCollection^
A CodeTypeReferenceCollection containing the objects to add to the collection.
| Exception | Condition |
|---|---|
| ArgumentNullException | value is null. |
// Adds an array of CodeTypeReference objects to the collection. array<CodeTypeReference^>^references = {gcnew CodeTypeReference( bool::typeid ),gcnew CodeTypeReference( bool::typeid )}; collection->AddRange( references ); // Adds a collection of CodeTypeReference objects to the collection. CodeTypeReferenceCollection^ referencesCollection = gcnew CodeTypeReferenceCollection; referencesCollection->Add( gcnew CodeTypeReference( bool::typeid ) ); referencesCollection->Add( gcnew CodeTypeReference( bool::typeid ) ); collection->AddRange( referencesCollection );
.NET Framework
Available since 1.1
Available since 1.1
Show: