SetT Constructor |
Name | Description | |
---|---|---|
![]() | SetT |
Creates a new Set. The Equals method and GetHashCode method on T
will be used to compare items for equality.
|
![]() | SetT(IEnumerableT) |
Creates a new Set. The Equals method and GetHashCode method on T
will be used to compare items for equality.
|
![]() | SetT(IEqualityComparerT) |
Creates a new Set. The Equals and GetHashCode method of the passed comparer object
will be used to compare items in this set.
|
![]() | SetT(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.
|