CodeDirectiveCollection.Insert(Int32, CodeDirective) Method

Definition

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

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

Parameters

index
Int32

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

value
CodeDirective

The CodeDirective object to insert.

Exceptions

index is less than 0.

-or-

index is greater than Count.

Examples

The following code example shows the use of the Insert method to insert a CodeDirective object at index 0 of the collection. This example is part of a larger example provided for the CodeDirectiveCollection class.

// Inserts a CodeDirective at index 0 of the collection.
collection.Insert(0, new CodeRegionDirective(CodeRegionMode.Start, "Region1"));
' Inserts a CodeDirective at index 0 of the collection.
collection.Insert(0, New CodeRegionDirective(CodeRegionMode.Start, "Region1"))

Applies to