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
Vertu í samstarfi við okkur á GitHub
Heimildina fyrir þetta efni er að finna á GitHub, þar sem þú getur líka búið til og farið yfir vandamál og sameinað beiðnir. Frekari upplýsingar er að finna í framlagshandbók okkar.