CodeCatchClauseCollection.Remove(CodeCatchClause) Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
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)