XmlSchemaObjectCollection.Insert(Int32, XmlSchemaObject) 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 an XmlSchemaObject to the XmlSchemaObjectCollection
.
public:
void Insert(int index, System::Xml::Schema::XmlSchemaObject ^ item);
public void Insert (int index, System.Xml.Schema.XmlSchemaObject item);
member this.Insert : int * System.Xml.Schema.XmlSchemaObject -> unit
Public Sub Insert (index As Integer, item As XmlSchemaObject)
Parameters
- index
- Int32
The zero-based index at which an item should be inserted.
- item
- XmlSchemaObject
The XmlSchemaObject to insert.
Exceptions
Remarks
If Count
already equals the capacity, the capacity of the list is doubled by automatically reallocating the internal array before the new element is inserted.
If index
is equal to Count
, value
is added to the end of XmlSchemaObjectCollection
.
The elements that follow the insertion point move down to accommodate the new element.