BaseCollection<T>.Remove Method
Removes an element from the collection.
Namespace: Microsoft.Rtc.Workflow.Utilities
Assembly: Microsoft.Rtc.Workflow (in Microsoft.Rtc.Workflow.dll)
Syntax
'Declaration
Public Function Remove ( _
item As T _
) As Boolean
'Usage
Dim instance As BaseCollection
Dim item As T
Dim returnValue As Boolean
returnValue = instance.Remove(item)
public bool Remove(
T item
)
Parameters
- item
Type: T
The object to remove from the collection.
Return Value
Type: System.Boolean
True, if the item was successfully removed from the ICollection; otherwise, False.