Inserts the specified item in the list at the specified index.

Namespace:  Mindscape.LightSpeed
Assembly:  Mindscape.LightSpeed (in Mindscape.LightSpeed.dll)
Version: 4.0.0.0 (4.0.0.0)

Syntax

C#
protected override void InsertItem(
	int index,
	TEntity item
)
Visual Basic (Declaration)
Protected Overrides Sub InsertItem ( _
	index As Integer, _
	item As TEntity _
)

Parameters

index
Type: System..::.Int32
The zero-based index where the item is to be inserted.
item
Type: TEntity
The item to insert in the list.

See Also