DoubleCollection.Insert(Int32, Double) Method

Definition

Inserts a Double into this DoubleCollection at the specified index.

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)

Parameters

index
Int32

The index at which to insert value, the specified Double.

value
Double

The item to insert.

Implements

Exceptions

value is null.

index is not a valid index in the DoubleCollection.

The DoubleCollection is read-only.

-or-

The DoubleCollection has a fixed size.

Remarks

Unlike typical implementations of IList<T>.Insert, this implementation throws an ArgumentException if you attempt to insert a null (Nothing) reference.

Applies to

See also