Removes the specified element from the set.

Namespace: Iesi.Collections
Assembly: Iesi.Collections (in Iesi.Collections.dll) Version: 1.0.1.0 (3.2.0.4000)

Syntax

C#
public override sealed bool Remove(
	Object o
)
Visual Basic
Public Overrides NotOverridable Function Remove ( _
	o As Object _
) As Boolean
Visual C++
public:
virtual bool Remove(
	Object^ o
) override sealed

Parameters

o
Type: System..::..Object
The element to be removed.

Return Value

trueTruetruetrue (True in Visual Basic) if the set contained the specified element, falseFalsefalsefalse (False in Visual Basic) otherwise.

Implements

ISet..::..Remove(Object)

See Also