ActivityCollection.IList.Remove(Object) Method

Definition

Removes the first occurrence of a specific object from the IList.

 virtual void System.Collections.IList.Remove(System::Object ^ value) = System::Collections::IList::Remove;
void IList.Remove (object value);
override this.System.Collections.IList.Remove : obj -> unit
Sub Remove (value As Object) Implements IList.Remove

Parameters

value
Object

The Object to remove from the IList.

Implements

Exceptions

The IList is read-only.

IList has a fixed size.

Remarks

The elements that follow the removed element move up to occupy the vacated spot.

Applies to