Click or drag to resize

WeakCollectionTRemove Method

Removes an element from the collection. Returns true if the item is found and removed, false when the item is not found. Runtime: O(n).

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

Parameters

item  T
The item to remove.

Return Value

Boolean
True if the item was found and removed; otherwise, false.
See Also