Inserts an item to the IList<(Of <(T>)>) at the specified index.
Namespace:
BioSharp.Core.UtilsAssembly: BioSharp.Core (in BioSharp.Core.dll) Version: 0.1.3191.26120 (0.1.0.0)
Syntax
C# |
---|
public void Insert( int index, T item ) |
Parameters
- index
- Type: System..::.Int32
The zero-based index at which item should be inserted.
- item
- Type: T
The object to insert into the IList<(Of <(T>)>).
Implements
IList<(Of <(T>)>)..::.Insert(Int32, T)Exceptions
Exception | Condition |
---|---|
System..::.ArgumentOutOfRangeException | index is not a valid index in the IList<(Of <(T>)>). |
System..::.NotSupportedException | The IList<(Of <(T>)>) is read-only. |