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 abstract bool Remove(
	T o
)  | 
| Visual Basic | 
|---|
Public MustOverride Function Remove ( _
	o As T _
) As Boolean  | 
| Visual C++ | 
|---|
public:
virtual bool Remove(
	T o
) abstract  | 
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