|
FileBackedHashSetTAdd Method
|
Adds an element to the current set and returns a value to indicate if the element was successfully added.
Namespace: GSF.CollectionsAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.218-beta+101eee949414e414795e55a6e73d88938f0177b8
Syntax public bool Add(
T item
)
Public Function Add (
item As T
) As Boolean
public:
virtual bool Add(
T item
) sealed
abstract Add :
item : 'T -> bool
override Add :
item : 'T -> bool
View SourceParameters
- item T
- The element to add to the set.
Return Value
Boolean
true if the element is added to the set; false if the element is already in the set.
Implements
ISetTAdd(T)See Also