|
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.207-beta+1781b796b2aa7a54013a031eb432fe4ccee31867
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