Remove()

HashSet::Remove(const T&) method

Removes element from set.

bool System::Collections::Generic::HashSet<T>::Remove(const T &item) override

Arguments

ParameterTypeDescription
itemconst T&Element to remove.

Return Value

True if element was found and deleted, false otherwise.

See Also