Remove Method

Wintellect PowerCollections

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Must be overridden to allow removing items from this collection.

Namespace: Wintellect.PowerCollections
Assembly:  PowerCollections (in PowerCollections.dll)

Syntax

C#
public abstract bool Remove(
	T item
)
Visual Basic (Declaration)
Public MustOverride Function Remove ( _
	item As T _
) As Boolean
Visual C++
public:
virtual bool Remove (
	T item
) abstract

Parameters

item
T

Return Value

True if item existed in the collection and was removed. False if item did not exist in the collection.

See Also