Inserts an item into the list at the specified index.

Namespace:  C1.C1Schedule
Assembly:  C1.Web.UI.Controls.2 (in C1.Web.UI.Controls.2.dll)

Syntax

C#
public virtual void Insert(
	int index,
	Object value
)
Visual Basic
Public Overridable Sub Insert ( _
	index As Integer, _
	value As Object _
)

Parameters

index
Type: System..::..Int32
The zero-based index at which value should be inserted.
value
Type: System..::..Object
The Object to insert.

Implements

IList..::..Insert(Int32, Object)

See Also