ImmutableHashSet<T>.ISet<T>.Add(T) Method

Definition

Adds an element to the current set and returns a value that indicates whether the element was successfully added.

 virtual bool System.Collections.Generic.ISet<T>.Add(T item) = System::Collections::Generic::ISet<T>::Add;
bool ISet<T>.Add (T item);
abstract member System.Collections.Generic.ISet<T>.Add : 'T -> bool
override this.System.Collections.Generic.ISet<T>.Add : 'T -> bool
Function Add (item As T) As Boolean Implements ISet(Of T).Add

Parameters

item
T

The element to add to the collection.

Returns

true if the element is added to the set; false if the element is already in the set.

Implements

Remarks

This member is an explicit interface member implementation. It can be used only when the ImmutableHashSet<T> instance is cast to an ISet<T> interface.

Applies to