Click or drag to resize
OrderedBagTComparer Property
Returns the IComparer<T> used to compare items in this bag.

Namespace: X3Platform.Collections
Assembly: X3Platform.Support (in X3Platform.Support.dll) Version: 1.0.0.0 (2.0.0.0)
Syntax
public IComparer<T> Comparer { get; }

Property Value

Type: IComparerT
If the bag was created using a comparer, that comparer is returned. If the bag was created using a comparison delegate, then a comparer equivalent to that delegate is returned. Otherwise the default comparer for T (Comparer<T>.Default) is returned.
See Also