|
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.230-beta+03417d7b5cff037b24e882d7adef82d359b34964
Syntaxpublic 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