IntCollectionInsert(Int32, Int32) Method

Insert an Item into the specified Index of the Collection, moving all other values downward.

Definition

Namespace: Html
Assembly: Html (in Html.dll) Version: 25.2822.3845
C#
public void Insert(
	int value,
	int index
)

Parameters

value  Int32
The int value to Insert.
index  Int32
The Ordinal Index at which to insert the Item.

Remarks

If an illegal index is specified, the Item is simply appended to the end of the Collection.

See Also