IVector<T>.InsertAt(UInt32, T) Method
Definition
Inserts an item at a specified index in the vector.
public:
void InsertAt(unsigned int index, T value);
void InsertAt(uint32_t index, T value);
public void InsertAt(uint index, T value);
Public Sub InsertAt (index As UInteger, value As T)
Parameters
- index
- UInt32
The zero-based index.
- value
- T
The item to insert.
Remarks
When programming with .NET, this interface is hidden and developers should use the System.Collections.Generic.IList