DoubleCollection.Insert(Int32, Double) 方法

定义

Double 插入到此 DoubleCollection 的指定索引位置。

public:
 virtual void Insert(int index, double value);
public void Insert (int index, double value);
abstract member Insert : int * double -> unit
override this.Insert : int * double -> unit
Public Sub Insert (index As Integer, value As Double)

参数

index
Int32

要在其中插入 value(指定的 Double)的索引位置。

value
Double

要插入的项。

实现

例外

valuenull

index 不是 DoubleCollection 中的有效索引。

DoubleCollection 为只读。

- 或 -

DoubleCollection 具有固定的大小。

注解

与 的典型实现IList<T>.Insert不同,如果尝试插入 null (Nothing) 引用,此实现将引发 ArgumentException

适用于

另请参阅