|
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.300-beta+b2186e2cd1f968c931b0e151fdd7c839f3d1e9cf
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