CodeNamespaceCollection.Insert(Int32, CodeNamespace) Method

Definition

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

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)

Parameters

index
Int32

The zero-based index where the new item should be inserted.

value
CodeNamespace

The CodeNamespace to insert.

Examples

The following example demonstrates how to use the Insert method to insert a CodeNamespace object into a 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"))

Applies to

See also