-
Code formerly using
Comparer<T>
andCompareSource
should now useComparerBuilder
. -
Similarly,
EqualityComparer<T>
andEqualityCompareSource
have been replaced byEqualityComparerBuilder
. -
The anonymous comparers have been removed.
-
OrderByDescending
andThenByDescending
have been removed; instead, use thedescending
parameter ofOrderBy
/ThenBy
. -
The
allowNulls
parameter of all methods has been renamed tospecialNullHandling
. -
All equality comparer types are in the
Nito.Comparers
namespace instead ofNito.EqualityComparers
.