Aracılığıyla paylaş


CodeCatchClauseCollection.Remove(CodeCatchClause) Yöntem

Tanım

Belirtilen CodeCatchClause nesneyi koleksiyondan kaldırır.

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)

Parametreler

value
CodeCatchClause

CodeCatchClause Koleksiyondan kaldırılacak nesne.

Özel durumlar

Belirtilen nesne koleksiyonda bulunamadı.

Örnekler

Aşağıdaki örnekte, bir nesnesinden CodeCatchClauseCollectionsilmek CodeCatchClause için yönteminin nasıl kullanılacağı Remove gösterilmektedir.

// 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)

Şunlara uygulanır