Bagikan melalui


CodeNamespaceCollection.Insert(Int32, CodeNamespace) Metode

Definisi

Menyisipkan objek yang ditentukan CodeNamespace ke dalam koleksi pada indeks yang ditentukan.

public:
 void Insert(int index, System::CodeDom::CodeNamespace ^ value);
public void Insert (int index, System.CodeDom.CodeNamespace value);
member this.Insert : int * System.CodeDom.CodeNamespace -> unit
Public Sub Insert (index As Integer, value As CodeNamespace)

Parameter

index
Int32

Indeks berbasis nol tempat item baru harus disisipkan.

value
CodeNamespace

yang akan disisipkan CodeNamespace .

Contoh

Contoh berikut menunjukkan cara menggunakan Insert metode untuk menyisipkan CodeNamespace objek ke dalam CodeNamespaceCollection.

// Inserts a CodeNamespace at index 0 of the collection.
collection->Insert( 0, gcnew CodeNamespace( "TestNamespace" ) );
// Inserts a CodeNamespace at index 0 of the collection.
collection.Insert( 0, new CodeNamespace("TestNamespace") );
' Inserts a CodeNamespace at index 0 of the collection.
collection.Insert(0, New CodeNamespace("TestNamespace"))

Berlaku untuk

Lihat juga