CodeNamespaceCollection.Remove(CodeNamespace) 方法

定义

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

public void Remove (System.CodeDom.CodeNamespace value);

参数

value
CodeNamespace

要从该集合中移除的 CodeNamespace

例外

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

示例

以下示例演示如何使用 Remove 方法从 CodeNamespaceCollection中删除 CodeNamespace 对象。

// Removes the specified CodeNamespace from the collection.
CodeNamespace namespace_ = new CodeNamespace("TestNamespace");
collection.Remove( namespace_ );

适用于