VelocityDbListTInsert Method (Int32, T, Int32) |
Inserts an item at a specified index
Namespace:
VelocityDb.Collection
Assembly:
VelocityDb (in VelocityDb.dll) Version: 11.1.0.0 (11.1)
Syntax public virtual void Insert(
int index,
T item,
int maxArraySize
)
Public Overridable Sub Insert (
index As Integer,
item As T,
maxArraySize As Integer
)
public:
virtual void Insert(
int index,
T item,
int maxArraySize
)
abstract Insert :
index : int *
item : 'T *
maxArraySize : int -> unit
override Insert :
index : int *
item : 'T *
maxArraySize : int -> unit
Parameters
- index
- Type: SystemInt32
insert at this index - item
- Type: T
the item being inserted - maxArraySize
- Type: SystemInt32
Restrict array growth to this maximum size (if array needs to grow)
See Also