CodeTypeReferenceCollection::AddRange Method (CodeTypeReferenceCollection^)

 

Adds the contents of the specified CodeTypeReferenceCollection to the end of the collection.

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

public:
void AddRange(
	CodeTypeReferenceCollection^ value
)

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
Return to top
Show: