Inserts an element into the BigList at the specified index.
Namespace: BioAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public void Insert(
long index,
T item
)
Public Sub Insert (
index As Long,
item As T
)
public:
void Insert(
long long index,
T item
)
member Insert :
index : int64 *
item : 'T -> unit
Parameters
- index
- Type: SystemInt64
The zero-based index at which item should be inserted. - item
- Type: T
The object to insert. The value can be null for reference types.
See Also