Bagikan melalui


CodeNamespaceCollection.Remove(CodeNamespace) Metode

Definisi

Menghapus objek yang ditentukan CodeNamespace dari koleksi.

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

Parameter

value
CodeNamespace

untuk CodeNamespace menghapus dari koleksi.

Pengecualian

Objek yang ditentukan tidak ditemukan dalam koleksi.

Contoh

Contoh berikut menunjukkan cara menggunakan Remove metode untuk menghapus CodeNamespace objek dari CodeNamespaceCollection.

// Removes the specified CodeNamespace from the collection.
CodeNamespace^ namespace_ = gcnew CodeNamespace( "TestNamespace" );
collection->Remove( namespace_ );
// Removes the specified CodeNamespace from the collection.
CodeNamespace namespace_ = new CodeNamespace("TestNamespace");
collection.Remove( namespace_ );
' Removes the specified CodeNamespace from the collection.
Dim namespace_ As New CodeNamespace("TestNamespace")
collection.Remove(namespace_)

Berlaku untuk