IList<(Of <(<'T>)>)>..::..Insert Method
Inserts an item to the IList<(Of <(<'T>)>)> at the specified index.
Namespace:
System.Collections.GenericAssembly: Bridge (in Bridge.dll)
Syntax
[TemplateAttribute] void Insert( int index, T item )
<TemplateAttribute> _ Sub Insert ( _ index As Integer, _ item As T _ )
[TemplateAttribute] 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 into the IList<(Of <(<'T>)>)>.
Exceptions
Exception | Condition |
---|---|
System..::..ArgumentOutOfRangeException | index is not a valid index in the IList<(Of <(<'T>)>)>. |
System..::..NotSupportedException | The IList<(Of <(<'T>)>)> is read-only. |