CastedListTFrom, TToInsert Method

Inserts an item to the IListT at the specified index.

Definition

Namespace: QuickAdmin.Utils
Assembly: QuickAdmin.Net (in QuickAdmin.Net.dll) Version: 1.2.1
C#
public void Insert(
	int index,
	TTo item
)

Parameters

index  int
The zero-based index at which item should be inserted.
item  TTo
The object to insert into the IListT.

Implements

IListTInsert(int, T)

Exceptions

ArgumentOutOfRangeExceptionindex is not a valid index in the IListT.
NotSupportedExceptionThe IListT is read-only.

See Also