CodeTypeReferenceCollection::Remove Method (CodeTypeReference^)

 

Removes the specified CodeTypeReference from the collection.

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

public:
void Remove(
	CodeTypeReference^ value
)

Parameters

value
Type: System.CodeDom::CodeTypeReference^

The CodeTypeReference to remove from the collection.

Exception Condition
ArgumentException

The specified object is not found in the collection.

// Removes the specified CodeTypeReference from the collection.
CodeTypeReference^ reference = gcnew CodeTypeReference( bool::typeid );
collection->Remove( reference );

.NET Framework
Available since 1.1
Return to top
Show: