DoubleCollection.Insert(Int32, Double) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将 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)
参数
- value
- Double
要插入的项。
实现
例外
value
为 null
。
index
不是 DoubleCollection 中的有效索引。
注解
与 的典型实现IList<T>.Insert不同,如果尝试插入 null (Nothing) 引用,此实现将引发 ArgumentException 。