CodeDirectiveCollection.Remove(CodeDirective) 方法

定义

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

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

参数

value
CodeDirective

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

例外

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

示例

下面的代码示例演示如何使用 Remove 方法从集合中删除指定的 CodeDirectiveCollection 对象。 此示例是为 类提供的更大示例的 CodeDirectiveCollection 一部分。

// Removes the specified CodeDirective from the collection.
CodeDirective directive = new CodeRegionDirective(CodeRegionMode.Start, "Region1");
collection.Remove(directive);
' Removes the specified CodeDirective from the collection.
Dim directive = New CodeRegionDirective(CodeRegionMode.Start, "Region1")
collection.Remove(directive)

适用于