Udostępnij za pośrednictwem


CodeCatchClauseCollection.Remove(CodeCatchClause) Metoda

Definicja

Usuwa określony CodeCatchClause obiekt z kolekcji.

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

Parametry

value
CodeCatchClause

CodeCatchClause Obiekt 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ąć CodeCatchClause obiekt z obiektu CodeCatchClauseCollection.

// Removes the specified CodeCatchClause from the collection.
CodeCatchClause^ clause = gcnew CodeCatchClause( "e" );
collection->Remove( clause );
// Removes the specified CodeCatchClause from the collection.
CodeCatchClause clause = new CodeCatchClause("e");
collection.Remove( clause );
' Removes the specified CodeCatchClause from the collection.
Dim clause As New CodeCatchClause("e")
collection.Remove(clause)

Dotyczy