|
ImmutableListTRemove Method
|
Removes the first occurrence of a specific object from the ICollectionT.
Namespace: GSF.ImmutableAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.246-beta+ff392465a0262ee2737937d4127fc3c2f08c6dcd
Syntaxpublic bool Remove(
T item
)
Public Function Remove (
item As T
) As Boolean
public:
virtual bool Remove(
T item
) sealed
abstract Remove :
item : 'T -> bool
override Remove :
item : 'T -> bool
View SourceParameters
- item T
- The object to remove from the ICollectionT.
Return Value
Booleantrue 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)
See Also