Adds the specified element to this set if it is not already present.

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

Syntax

C#
public abstract bool Add(
	T o
)
Visual Basic
Public MustOverride Function Add ( _
	o As T _
) As Boolean
Visual C++
public:
virtual bool Add(
	T o
) abstract

Parameters

o
Type: T
The object to add to the set.

Return Value

trueTruetruetrue (True in Visual Basic) is the object was added, falseFalsefalsefalse (False in Visual Basic) if it was already present.

Implements

ISet<(Of <(<'T>)>)>..::..Add(T)

See Also