This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class EqualityComparerFactory | |
{ | |
private sealed class Impl<T> : IEqualityComparer<T> | |
{ | |
private readonly Func<T, T, bool> Eq; | |
private readonly Func<T, int> HashFunc; | |
public Impl(Func<T, T, bool> eq, Func<T, int> hashFunc) | |
{ | |
Eq = eq; | |
HashFunc = hashFunc; |