Add(T)
|
Adds the specified element to a set.
|
Clear()
|
Removes all elements from a HashSet<T> object.
|
Contains(T)
|
Determines whether a HashSet<T> object contains the specified element.
|
CopyTo(T[], Int32, Int32)
|
Copies the specified number of elements of a HashSet<T> object to an array, starting at the specified array index.
|
CopyTo(T[], Int32)
|
Copies the elements of a HashSet<T> object to an array, starting at the specified array index.
|
CopyTo(T[])
|
Copies the elements of a HashSet<T> object to an array.
|
CreateSetComparer()
static
|
Returns an IEqualityComparer object that can be used for equality testing of a HashSet<T> object.
|
Equals(Object, Object)
static
|
Determines whether the specified object instances are considered equal.
|
Equals(Object)
|
Determines whether the specified object is equal to the current object.
|
ExceptWith(IEnumerable<T>)
|
Removes all elements in the specified collection from the current HashSet<T> object.
|
GetEnumerator()
|
Returns an enumerator that iterates through a HashSet<T> object.
|
GetHashCode()
|
Serves as the default hash function.
|
GetObjectData(SerializationInfo, StreamingContext)
|
Implements the ISerializable interface and returns the data needed to serialize a HashSet<T> object.
|
GetType()
|
Gets the Type of the current instance.
|
IntersectWith(IEnumerable<T>)
|
Modifies the current HashSet<T> object to contain only elements that are present in that object and in the specified collection.
|
IsProperSubsetOf(IEnumerable<T>)
|
Determines whether a HashSet<T> object is a proper subset of the specified collection.
|
IsProperSupersetOf(IEnumerable<T>)
|
Determines whether a HashSet<T> object is a proper superset of the specified collection.
|
IsSubsetOf(IEnumerable<T>)
|
Determines whether a HashSet<T> object is a subset of the specified collection.
|
IsSupersetOf(IEnumerable<T>)
|
Determines whether a HashSet<T> object is a superset of the specified collection.
|
MemberwiseClone()
protected
|
Creates a shallow copy of the current Object.
|
OnDeserialization(Object)
|
Implements the ISerializable interface and raises the deserialization event when the deserialization is complete.
|
Overlaps(IEnumerable<T>)
|
Determines whether the current HashSet<T> object and a specified collection share common elements.
|
ReferenceEquals(Object, Object)
static
|
Determines whether the specified Object instances are the same instance.
|
Remove(T)
|
Removes the specified element from a HashSet<T> object.
|
RemoveWhere(Predicate<T>)
|
Removes all elements that match the conditions defined by the specified predicate from a HashSet<T> collection.
|
SetEquals(IEnumerable<T>)
|
Determines whether a HashSet<T> object and the specified collection contain the same elements.
|
SymmetricExceptWith(IEnumerable<T>)
|
Modifies the current HashSet<T> object to contain only elements that are present either in that object or in the specified collection, but not both.
|
IEnumerable<T>.GetEnumerator()
|
Returns an enumerator that iterates through a collection.
|
IEnumerable.GetEnumerator()
|
Returns an enumerator that iterates through a collection.
|
ToString()
|
Returns a string that represents the current object.
|
TrimExcess()
|
Sets the capacity of a HashSet<T> object to the actual number of elements it contains, rounded up to a nearby, implementation-specific value.
|
TryGetValue(T, T)
|
Searches the set for a given value and returns the equal value it finds, if any.
|
UnionWith(IEnumerable<T>)
|
Modifies the current HashSet<T> object to contain all elements that are present in itself, the specified collection, or both.
|