CodeCommentStatementCollection.Remove メソッド
指定した CodeCommentStatement をコレクションから削除します。
名前空間: System.CodeDom
アセンブリ: System (system.dll 内)
構文
'宣言
Public Sub Remove ( _
value As CodeCommentStatement _
)
'使用
Dim instance As CodeCommentStatementCollection
Dim value As CodeCommentStatement
instance.Remove(value)
public void Remove (
CodeCommentStatement value
)
public:
void Remove (
CodeCommentStatement^ value
)
public void Remove (
CodeCommentStatement value
)
public function Remove (
value : CodeCommentStatement
)
パラメータ
- value
コレクションから削除する CodeCommentStatement。
例外
例外の種類 | 条件 |
---|---|
指定したオブジェクトがコレクション内で見つかりません。 |
使用例
' Removes the specified CodeCommentStatement from the collection.
Dim comment As New 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.
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);
プラットフォーム
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。
バージョン情報
.NET Framework
サポート対象 : 2.0、1.1、1.0
参照
関連項目
CodeCommentStatementCollection クラス
CodeCommentStatementCollection メンバ
System.CodeDom 名前空間