DoubleCollection.Insert(Int32, Double) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- value
- Double
The item to insert.
Implements
Exceptions
value
is null
.
index
is not a valid index in the DoubleCollection.
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
Samarbeta med oss på GitHub
Källan för det här innehållet finns på GitHub, där du även kan skapa och granska ärenden och pull-begäranden. Se vår deltagarguide för mer information.