CodeNamespaceCollection.Insert(Int32, CodeNamespace) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Werk met ons samen op GitHub
De bron voor deze inhoud vindt u op GitHub, waar u ook problemen en pull-aanvragen kunt maken en bekijken. Raadpleeg onze gids voor inzenders voor meer informatie.