CodeCatchClauseCollection.Remove(CodeCatchClause) 方法

定义

从集合中移除指定的 CodeCatchClause 对象。

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)

参数

value
CodeCatchClause

要从集合中移除的 CodeCatchClause 对象。

例外

未在集合中找到指定的对象。

示例

下面的示例演示如何使用 Remove 方法从 CodeCatchClauseCollection中删除 CodeCatchClause 对象。

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

适用于