CodeTypeDeclarationCollection.Insert(Int32, CodeTypeDeclaration) Methode

Definition

Fügt das angegebene CodeTypeDeclaration-Objekt am angegebenen Index in die Auflistung ein.

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

Parameter

index
Int32

Der nullbasierte Index, an dem das angegebene Objekt eingefügt werden soll.

value
CodeTypeDeclaration

Das einzufügende CodeTypeDeclaration-Objekt.

Beispiele

Im folgenden Beispiel wird veranschaulicht, wie Sie mit der Insert -Methode ein CodeTypeDeclaration -Objekt in eine CodeTypeDeclarationCollectioneinfügen.

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

Gilt für:

Weitere Informationen