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