CodeAttributeDeclarationCollection::Remove Method (CodeAttributeDeclaration^)

 

Removes the specified CodeAttributeDeclaration object from the collection.

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

public:
void Remove(
	CodeAttributeDeclaration^ value
)

Parameters

value
Type: System.CodeDom::CodeAttributeDeclaration^

The CodeAttributeDeclaration 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 CodeAttributeDeclaration object from the CodeAttributeDeclarationCollection.

// Removes the specified CodeAttributeDeclaration from 
// the collection.
array<CodeAttributeArgument^>^temp5 = {gcnew CodeAttributeArgument( gcnew CodePrimitiveExpression( "Test Description" ) )};
CodeAttributeDeclaration^ declaration = gcnew CodeAttributeDeclaration( "DescriptionAttribute",temp5 );
collection->Remove( declaration );

.NET Framework
Available since 1.1
Return to top
Show: