Click or drag to resize

ObservableListTRemove Method

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

Namespace: Altaxo.Collections
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public bool Remove(
	T item
)

Parameters

item  T
The object to remove from the ICollectionT.

Return Value

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

Implements

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