XmlSchemaObjectCollection.Insert(Int32, XmlSchemaObject) 方法

定义

XmlSchemaObject 插入 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)

参数

index
Int32

从零开始的索引,应在该位置插入项。

item
XmlSchemaObject

要插入的 XmlSchemaObject

例外

index 小于零。

  • 或 - index 大于 Count

注解

如果 Count 已等于容量,则通过在插入新元素之前自动重新分配内部数组来增加列表的容量。

如果 index 等于 Countvalue 则添加到末尾 XmlSchemaObjectCollection

插入点后面的元素向下移动以容纳新元素。

适用于