Esempio n. 1
0
 private void Initialize()
 {
     systemComparer = new AdvancedComparer <T>(null);
     nullHashCode   = systemComparer.GetHashCode(null);
     ValueRangeInfo = systemComparer.ValueRangeInfo;
 }
Esempio n. 2
0
 /// <inheritdoc/>
 public override int GetHashCode(TTarget obj)
 {
     return(sourceComparer.GetHashCode(toSource(obj)));
 }
Esempio n. 3
0
 /// <inheritdoc/>
 public override int GetHashCode(TTarget obj) => sourceComparer.GetHashCode(ToSource(obj));