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 擲回 。