Click or drag to resize

ListCollectionTRemove Method

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

Namespace: GSF.Collections
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.255-beta+d64b121002b51165b41b0dbf6ccf4c8d3895faa3
Syntax
public bool Remove(
	T item
)
View Source

Parameters

item  T
The object to remove from the ICollectionT.

Return Value

Boolean
true if item was successfully removed from the ICollectionT; otherwise, false. This method also returns false if item is not found in the original ICollectionT.

Implements

ICollectionTRemove(T)
Exceptions
ExceptionCondition
NotSupportedExceptionThe ICollectionT is read-only.
See Also