CodeCommentStatementCollection.Remove(CodeCommentStatement) 方法

定义

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

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

参数

value
CodeCommentStatement

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

例外

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

示例

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

// Removes the specified CodeCommentStatement from the collection.
CodeCommentStatement^ comment = gcnew CodeCommentStatement( "Test comment" );
collection->Remove( comment );
// Removes the specified CodeCommentStatement from the collection.
CodeCommentStatement comment = new CodeCommentStatement("Test comment");
collection.Remove( comment );
' Removes the specified CodeCommentStatement from the collection.
Dim comment As New CodeCommentStatement("Test comment")
collection.Remove(comment)

适用于