When implemented by a class, inserts an item to the IList at the specified position.
[Visual Basic] Sub Insert( _ ByVal index As Integer, _ ByVal value As Object _ ) [C#] void Insert( int index, object value ); [C++] void Insert( int index, Object* value ) = 0; [JScript] function Insert( index : int, value : Object );
If index equals the number of items in the IList, then value is appended to the end.
IList Interface | IList Members | System.Collections Namespace