CodeCatchClauseCollection.Remove(CodeCatchClause) Metodo

Definizione

Rimuove l'oggetto CodeCatchClause specificato dalla raccolta.

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)

Parametri

value
CodeCatchClause

Oggetto CodeCatchClause da rimuovere dalla raccolta.

Eccezioni

Impossibile trovare l'oggetto specificato nell'insieme.

Esempio

Nell'esempio seguente viene illustrato come utilizzare il Remove metodo per eliminare un CodeCatchClause oggetto da un oggetto 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)

Si applica a