Enum CollectionComparerOptions
- Namespace
- PolyType.Abstractions
- Assembly
- PolyType.dll
The kinds of comparers that may be supplied to a collection's constructor.
public enum CollectionComparerOptions
Fields
Comparer = 2The collection accepts a custom IComparer<T> for sorting and/or equality checks.
EqualityComparer = 1The collection accepts a custom IEqualityComparer<T> for hashing and/or equality checks.
None = 0The collection has no recognizable support for custom comparers.