CodeTypeDeclarationCollection.Remove(CodeTypeDeclaration) メソッド

定義

指定した CodeTypeDeclaration オブジェクトをコレクションから削除します。

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

パラメーター

value
CodeTypeDeclaration

コレクションから削除する CodeTypeDeclaration

例外

指定したオブジェクトがコレクション内で見つかりません。

次の例では、 メソッドを使用 Remove して からオブジェクトを削除する CodeTypeDeclaration 方法を CodeTypeDeclarationCollection示します。

// Removes the specified CodeTypeDeclaration from the collection.
CodeTypeDeclaration^ declaration = gcnew CodeTypeDeclaration( "TestType" );
collection->Remove( declaration );
// Removes the specified CodeTypeDeclaration from the collection.
CodeTypeDeclaration declaration = new CodeTypeDeclaration("TestType");
collection.Remove( declaration );
' Removes the specified CodeTypeDeclaration from the collection.
Dim declaration As New CodeTypeDeclaration("TestType")
collection.Remove(declaration)

適用対象