Click or drag to resize
OrderedBagT Constructor (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.

Namespace: X3Platform.Collections
Assembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntax
public OrderedBag(
	IEnumerable<T> collection,
	IComparer<T> comparer
)

Parameters

collection
Type: System.Collections.GenericIEnumerableT
A collection with items to be placed into the OrderedBag.
comparer
Type: System.Collections.GenericIComparerT
An instance of IComparer<T> that will be used to compare items.
Remarks
The GetHashCode and Equals methods of the provided IComparer<T> will never be called, and need not be implemented.
See Also