Click or drag to resize
SetT Constructor
Overload List
  NameDescription
Public methodSetT
Creates a new Set. The Equals method and GetHashCode method on T will be used to compare items for equality.
Public methodSetT(IEnumerableT)
Creates a new Set. The Equals method and GetHashCode method on T will be used to compare items for equality.
Public methodSetT(IEqualityComparerT)
Creates a new Set. The Equals and GetHashCode method of the passed comparer object will be used to compare items in this set.
Public methodSetT(IEnumerableT, IEqualityComparerT)
Creates a new Set. The Equals and GetHashCode method of the passed comparer object will be used to compare items in this set. The set is initialized with all the items in the given collection.
Top
See Also