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 して からオブジェクトを削除する CodeCommentStatement 方法を CodeCommentStatementCollection示します。

// 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)

適用対象