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.RemoveAt

When implemented by a class, removes the IList item at the specified index.

[Visual Basic]
Sub RemoveAt( _
   ByVal index As Integer _
)
[C#]
void RemoveAt(
   int index
);
[C++]
void RemoveAt(
   int index
) = 0;
[JScript]
function RemoveAt(
   index : int
);

Parameters

index
The position of the item to remove.

See Also

IList Interface | IList Members | System.Collections Namespace