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

When implemented by a class, removes an item from the IList.

[Visual Basic]
Sub Remove( _
   ByVal value As Object _
)
[C#]
void Remove(
   object value
);
[C++]
void Remove(
   Object* value
) = 0;
[JScript]
function Remove(
   value : Object
);

Parameters

value
The Object to remove from the IList.

See Also

IList Interface | IList Members | System.Collections Namespace