Bridge

List<(Of <(<'T>)>)>..::..Insert Method

Inserts an element into the List<(Of <(<'T>)>)> at the specified index.

Namespace:  System.Collections.Generic
Assembly:  Bridge (in Bridge.dll)

Syntax


public void Insert(
	int index,
	T item
)
Public Sub Insert ( _
	index As Integer, _
	item As T _
)
public:
void Insert(
	int^ index, 
	T item
)

Parameters

index
Type: System..::..Int32
The zero-based index at which item should be inserted.
item
Type: T
The object to insert. The value can be null for reference types.

Exceptions


ExceptionCondition
System..::..ArgumentOutOfRangeExceptionindex is less than 0.-or-index is greater than Count.