OrderedDictionary<TKey,TValue>.ValueCollection.IList<TValue>.Insert 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将项插入到指定索引处的 IList<T>。
virtual void System.Collections.Generic.IList<TValue>.Insert(int index, TValue item) = System::Collections::Generic::IList<TValue>::Insert;
void IList<TValue>.Insert (int index, TValue item);
abstract member System.Collections.Generic.IList<TValue>.Insert : int * 'Value -> unit
override this.System.Collections.Generic.IList<TValue>.Insert : int * 'Value -> unit
Sub Insert (index As Integer, item As TValue) Implements IList(Of TValue).Insert
参数
- index
- Int32
应插入 item
的从零开始的索引。
- item
- TValue
要插入 IList<T>的对象。