Click or drag to resize
OrderedSetT Constructor
Overload List
  NameDescription
Public methodOrderedSetT
Creates a new OrderedSet. The T must implement IComparable<T> or IComparable. The CompareTo method of this interface will be used to compare items in this set.
Public methodOrderedSetT(IComparerT)
Creates a new OrderedSet. The Compare method of the passed comparison object will be used to compare items in this set.
Public methodOrderedSetT(IEnumerableT)
Creates a new OrderedSet. The T must implement IComparable<T> or IComparable. The CompareTo method of this interface will be used to compare items in this set. The set is initialized with all the items in the given collection.
Public methodOrderedSetT(ComparisonT)
Creates a new OrderedSet. The passed delegate will be used to compare items in this set.
Public methodOrderedSetT(IEnumerableT, IComparerT)
Creates a new OrderedSet. The Compare method of the passed comparison object will be used to compare items in this set. The set is initialized with all the items in the given collection.
Public methodOrderedSetT(IEnumerableT, ComparisonT)
Creates a new OrderedSet. The passed delegate will be used to compare items in this set. The set is initialized with all the items in the given collection.
Top
See Also