FileBackedHashSetT, TElemAdd Method
Adds an element to the current set and returns a value to indicate if the element was successfully added.
Namespace: Gemstone.IO.CollectionsAssembly: Gemstone.IO (in Gemstone.IO.dll) Version: 1.0.156 -- Release Build+6a9f88f477f6aa18d5026c0c0fcc061b1aaed2d2
public bool Add(
T item
)
Public Function Add (
item As T
) As Boolean
public:
virtual bool Add(
T item
) sealed
- item T
- The element to add to the set.
Boolean
true if the element is added to the set; false if the element is already in the set.
ISetTAdd(T)