NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

IList.Insert

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
);

Parameters

index
The position in IList at which to insert value.
value
The Object to insert into the IList.

Remarks

If index equals the number of items in the IList, then value is appended to the end.

See Also

IList Interface | IList Members | System.Collections Namespace