CodeTypeMemberCollection::Remove Method (CodeTypeMember^)

 

Removes a specific CodeTypeMember from the collection.

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

public:
void Remove(
	CodeTypeMember^ value
)

Parameters

value
Type: System.CodeDom::CodeTypeMember^

The CodeTypeMember to remove from the collection.

Exception Condition
ArgumentException

The specified object is not found in the collection.

The following code example demonstrates how to use the Remove method to delete a CodeTypeMember object from a CodeTypeMemberCollection.

// Removes the specified CodeTypeMember from the collection.
CodeTypeMember^ member = gcnew CodeMemberField( "System.String","TestStringField" );
collection->Remove( member );

.NET Framework
Available since 1.1
Return to top
Show: