Aracılığıyla paylaş


CodeNamespaceCollection.Insert(Int32, CodeNamespace) Yöntem

Tanım

Belirtilen nesneyi belirtilen CodeNamespace dizindeki koleksiyona ekler.

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)

Parametreler

index
Int32

Yeni öğenin eklenmesi gereken sıfır tabanlı dizin.

value
CodeNamespace

Eklenecek CodeNamespace öğesi.

Örnekler

Aşağıdaki örnek içine bir CodeNamespace nesnesi CodeNamespaceCollectioneklemek için yönteminin nasıl kullanılacağını Insert gösterir.

// 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"))

Şunlara uygulanır

Ayrıca bkz.