SynchronizedCollection<T>.InsertItem(Int32, T) 方法

定义

将某个项插入到集合中的指定索引处。

protected:
 virtual void InsertItem(int index, T item);
protected virtual void InsertItem (int index, T item);
abstract member InsertItem : int * 'T -> unit
override this.InsertItem : int * 'T -> unit
Protected Overridable Sub InsertItem (index As Integer, item As T)

参数

index
Int32

集合中从零开始的索引,在此处插入对象。

item
T

要插入到集合中的对象。

例外

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

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

注解

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

适用于