共用方式為


CodeStatementCollection.Remove(CodeStatement) 方法

定義

從集合中移除指定的 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)

適用於