Removes the specified element from the set.
Namespace: Iesi.Collections.GenericAssembly: Iesi.Collections (in Iesi.Collections.dll) Version: 1.0.1.0 (3.2.0.4000)
Syntax
C# |
---|
public override bool Remove(
T o
) |
Visual Basic |
---|
Public Overrides Function Remove ( _
o As T _
) As Boolean |
Visual C++ |
---|
public:
virtual bool Remove(
T o
) override |
Parameters
- o
- Type: T
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
ICollection<(Of <(<'T>)>)>..::..Remove(T)See Also