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