Udostępnij za pośrednictwem


CodeAttributeArgumentCollection.Remove(CodeAttributeArgument) Metoda

Definicja

Usuwa określony CodeAttributeArgument obiekt z kolekcji.

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

Parametry

value
CodeAttributeArgument

Obiekt CodeAttributeArgument do usunięcia z kolekcji.

Wyjątki

Określony obiekt nie został znaleziony w kolekcji.

Przykłady

W poniższym przykładzie pokazano, jak za pomocą Remove metody usunąć CodeAttributeArgument obiekt z obiektu CodeAttributeArgumentCollection.

// Removes the specified CodeAttributeArgument from the collection.
CodeAttributeArgument^ argument = gcnew CodeAttributeArgument( "Test Boolean Argument",gcnew CodePrimitiveExpression( true ) );
collection->Remove( argument );
// Removes the specified CodeAttributeArgument from the collection.
CodeAttributeArgument argument = new CodeAttributeArgument("Test Boolean Argument", new CodePrimitiveExpression(true));
collection.Remove( argument );
' Removes the specified CodeAttributeArgument from the collection.
Dim argument As New CodeAttributeArgument("Test Boolean Argument", New CodePrimitiveExpression(True))
collection.Remove(argument)

Dotyczy