SchemaNameCollection.IList.Insert(Int32, Object) 方法

定义

将某项插入列表中指定的索引处。

 virtual void System.Collections.IList.Insert(int index, System::Object ^ value) = System::Collections::IList::Insert;
void IList.Insert (int index, object value);
void IList.Insert (int index, object? value);
abstract member System.Collections.IList.Insert : int * obj -> unit
override this.System.Collections.IList.Insert : int * obj -> unit
Sub Insert (index As Integer, value As Object) Implements IList.Insert

参数

index
Int32

应将值插入到的位置的索引(从零开始)。

value
Object

要插入到列表中的项。

实现

注解

如果 index 等于列表中的项数,则会将 追加到末尾。

在由连续的元素组成的集合(如列表)中,已移除元素下面的元素将上移以占据空出的位置。 如果集合具有索引,则移动的元素的索引也将更新。

适用于