CodeTypeDeclarationCollection.Remove(CodeTypeDeclaration) Method

Definition

Removes the specified CodeTypeDeclaration object from the collection.

public:
 void Remove(System::CodeDom::CodeTypeDeclaration ^ value);
public void Remove (System.CodeDom.CodeTypeDeclaration value);
member this.Remove : System.CodeDom.CodeTypeDeclaration -> unit
Public Sub Remove (value As CodeTypeDeclaration)

Parameters

value
CodeTypeDeclaration

The CodeTypeDeclaration to remove from the collection.

Exceptions

The specified object is not found in the collection.

Examples

The following example demonstrates how to use the Remove method to delete a CodeTypeDeclaration object from a CodeTypeDeclarationCollection.

// Removes the specified CodeTypeDeclaration from the collection.
CodeTypeDeclaration^ declaration = gcnew CodeTypeDeclaration( "TestType" );
collection->Remove( declaration );
// Removes the specified CodeTypeDeclaration from the collection.
CodeTypeDeclaration declaration = new CodeTypeDeclaration("TestType");
collection.Remove( declaration );
' Removes the specified CodeTypeDeclaration from the collection.
Dim declaration As New CodeTypeDeclaration("TestType")
collection.Remove(declaration)

Applies to