CodeStatementCollection::Remove Method (CodeStatement^)

 

Removes the specified CodeStatement object from the collection.

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

public:
void Remove(
	CodeStatement^ value
)

Parameters

value
Type: System.CodeDom::CodeStatement^

The CodeStatement 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 CodeStatement object from a CodeStatementCollection.

// Removes the specified CodeStatement from the collection.
collection->Remove( testStatement );

.NET Framework
Available since 1.1
Return to top
Show: