Click or drag to resize

ObservableList<T>.Remove Method

Removes the first occurrence of a specific object from the ICollection<T>.

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

Parameters

item  T
The object to remove from the ICollection<T>.

Return Value

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

Implements

ICollection<T>.Remove(T)
Exceptions
ExceptionCondition
NotSupportedExceptionThe ICollection<T> is read-only.
See Also