ReadOnlyCollection<T>.IList<T>.Insert(Int32, T) 方法

定义

IList<T> 中的指定索引处插入一个项。 此实现始终引发 NotSupportedException

 virtual void System.Collections.Generic.IList<T>.Insert(int index, T value) = System::Collections::Generic::IList<T>::Insert;
void IList<T>.Insert (int index, T value);
abstract member System.Collections.Generic.IList<T>.Insert : int * 'T -> unit
override this.System.Collections.Generic.IList<T>.Insert : int * 'T -> unit
Sub Insert (index As Integer, value As T) Implements IList(Of T).Insert

参数

index
Int32

应插入 value 的从零开始的索引。

value
T

要插入到 IList<T> 中的对象。

实现

例外

始终引发。

注解

此成员是显式接口成员的实现。 它只能在 ReadOnlyCollection<T> 实例被强制转换为 IList<T> 接口时使用。

适用于