SynchronizedCollection<T>.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);
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

value
Object

要插入到集合中的对象。

实现

例外

指定的 index 小于零或大于集合中的项数。

设置的 valuenull,或者不是集合的正确泛型类型 T

注解

如果 index 等于集合中的元素数,则将该项追加到列表中。 如果 index 小于集合中的元素数,该项插入点之后的元素将下移以容纳新元素。

适用于