[]
        
(Showing Draft Content)

C1.DataCollection.C1DataCollectionList-1.Insert

Insert Method

Insert(int, object?)

Inserts an item to the IList at the specified index.

Declaration
public void Insert(int index, object? value)
Public Sub Insert(index As Integer, value As Object)
Parameters
Type Name Description
int index

The zero-based index at which value should be inserted.

object value

The object to insert into the IList.

Implements

Insert(int, T)

Inserts an item to the IList<T> at the specified index.

Declaration
public void Insert(int index, T item)
Public Sub Insert(index As Integer, item As T)
Parameters
Type Name Description
int index

The zero-based index at which item should be inserted.

T item

The object to insert into the IList<T>.

Implements