CodeStatementCollection.Remove(CodeStatement) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从集合中移除指定的 CodeStatement 对象。
public:
void Remove(System::CodeDom::CodeStatement ^ value);
public void Remove (System.CodeDom.CodeStatement value);
member this.Remove : System.CodeDom.CodeStatement -> unit
Public Sub Remove (value As CodeStatement)
参数
- value
- CodeStatement
要从该集合中移除的 CodeStatement。
例外
未在集合中找到指定的对象。
示例
以下示例演示如何使用 Remove 方法从 CodeStatementCollection中删除 CodeStatement 对象。
// Removes the specified CodeStatement from the collection.
collection->Remove( testStatement );
// Removes the specified CodeStatement from the collection.
collection.Remove( testStatement );
' Removes the specified CodeStatement from the collection.
collection.Remove(testStatement)