CodeExpressionCollection::Remove Method (CodeExpression^)

 

Removes the specified CodeExpression object from the collection.

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

public:
void Remove(
	CodeExpression^ value
)

Parameters

value
Type: System.CodeDom::CodeExpression^

The CodeExpression object to remove from the collection.

Exception Condition
ArgumentException

The specified object is not found in the collection.

The following example demonstrates how to use the Remove method to delete a CodeExpression object from a CodeExpressionCollection.

// Removes the specified CodeExpression from the collection.
CodeExpression^ expression = gcnew CodePrimitiveExpression( true );
collection->Remove( expression );

.NET Framework
Available since 1.1
Return to top
Show: