CodeStatementCollection.Remove メソッド
指定した CodeStatement をコレクションから削除します。
Public Sub Remove( _
ByVal value As CodeStatement _)
[C#]
public void Remove(CodeStatementvalue);
[C++]
public: void Remove(CodeStatement* value);
[JScript]
public function Remove(
value : CodeStatement);
パラメータ
- value
コレクションから削除する CodeStatement 。
例外
例外の種類 | 条件 |
---|---|
ArgumentException | 指定したオブジェクトがコレクション内で見つかりません。 |
使用例
' Removes the specified CodeStatement from the collection.
Dim statement = New CodeCommentStatement("Test comment statement")
collection.Remove(statement)
[C#]
// Removes the specified CodeStatement from the collection.
CodeStatement statement = new CodeCommentStatement("Test comment statement");
collection.Remove( statement );
[C++]
// Removes the specified CodeStatement from the collection.
CodeStatement* statement = new CodeCommentStatement(S"Test comment statement");
collection->Remove( statement );
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ
参照
CodeStatementCollection クラス | CodeStatementCollection メンバ | System.CodeDom 名前空間