Bagikan melalui


CodeNamespaceCollection.Add(CodeNamespace) Metode

Definisi

Menambahkan objek yang ditentukan CodeNamespace ke koleksi.

public:
 int Add(System::CodeDom::CodeNamespace ^ value);
public int Add (System.CodeDom.CodeNamespace value);
member this.Add : System.CodeDom.CodeNamespace -> int
Public Function Add (value As CodeNamespace) As Integer

Parameter

value
CodeNamespace

yang CodeNamespace akan ditambahkan.

Mengembalikan

Indeks tempat elemen baru disisipkan.

Contoh

Contoh berikut menunjukkan cara menggunakan Add metode untuk menambahkan CodeNamespace objek ke CodeNamespaceCollection instans.

// Adds a CodeNamespace to the collection.
collection->Add( gcnew CodeNamespace( "TestNamespace" ) );
// Adds a CodeNamespace to the collection.
collection.Add( new CodeNamespace("TestNamespace") );
' Adds a CodeNamespace to the collection.
collection.Add(New CodeNamespace("TestNamespace"))

Berlaku untuk

Lihat juga