CodeTypeDeclarationCollection.Insert(Int32, CodeTypeDeclaration) Method

Definition

Inserts the specified CodeTypeDeclaration object into the collection at the specified index.

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)

Parameters

index
Int32

The zero-based index where the specified object should be inserted.

value
CodeTypeDeclaration

The CodeTypeDeclaration object to insert.

Examples

The following example demonstrates how to use the Insert method to insert a CodeTypeDeclaration object into a CodeTypeDeclarationCollection.

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

Applies to

See also