Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

CodeDirectiveCollection::Insert Method (Int32, CodeDirective^)

 

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

Namespace:   System.CodeDom
Assembly:  System (in System.dll)

public:
void Insert(
	int index,
	CodeDirective^ value
)

Parameters

index
Type: System::Int32

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

value
Type: System.CodeDom::CodeDirective^

The CodeDirective object to insert.

Exception Condition
ArgumentOutOfRangeException

index is less than 0.

-or-

index is greater than Count.

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.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft