CodeNamespaceCollection::Remove Method (CodeNamespace^)

 

Removes the specified CodeNamespace object from the collection.

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

public:
void Remove(
	CodeNamespace^ value
)

Parameters

value
Type: System.CodeDom::CodeNamespace^

The CodeNamespace 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 CodeNamespace object from a CodeNamespaceCollection.

// Removes the specified CodeNamespace from the collection.
CodeNamespace^ namespace_ = gcnew CodeNamespace( "TestNamespace" );
collection->Remove( namespace_ );

.NET Framework
Available since 1.1
Return to top
Show: