CodeCommentStatementCollection::Remove Method (CodeCommentStatement^)

 

Removes the specified CodeCommentStatement object from the collection.

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

public:
void Remove(
	CodeCommentStatement^ value
)

Parameters

value
Type: System.CodeDom::CodeCommentStatement^

The CodeCommentStatement 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 CodeCommentStatement object from the CodeCommentStatementCollection.

// Removes the specified CodeCommentStatement from the collection.
CodeCommentStatement^ comment = gcnew CodeCommentStatement( "Test comment" );
collection->Remove( comment );

.NET Framework
Available since 1.1
Return to top
Show: