Inserts an item to the IListT at the specified index.
Namespace:
FinMath.LinearAlgebra
Assembly:
FinMath (in FinMath.dll) Version: 2.4.7-0a995bd0ea1854c2c868ec3f8dae606c5777e170
Syntax public void Insert(
int index,
double item
)
Parameters
- index
- Type: SystemInt32
The zero-based index at which item should be inserted. - item
- Type: SystemDouble
The object to insert into the IListT.
Implements
IListTInsert(Int32, T)Exceptions Exception | Condition |
---|
ArgumentOutOfRangeException | index is not a valid index in the IListT. |
NotSupportedException | The IListT is read-only. |
See Also