var comparer = ...
var s1 = new HashSet<int[]>(new[] { new[] { 1, 2 }, new[] { 3, 4 } }, comparer);
var s2 = new HashSet<int[]>(new[] { new[] { 1, 2 }, new[] { 3, 4 } }, comparer);
Existe-t-il un comparateur (par défaut ?) que je peux insérer dans HashSet pour que s1.Equals(s2) soit vrai ? Je sais qu'il existe un StructuralComparisons.StructuralEqualityComparer, mais HashSet nécessite un IEqualityComparer<> générique.
UPDATE:
Ça n'a pas l'air de pouvoir marcher. Ce qui s'en rapproche le plus est l'utilisation de HashSet.SetEquals et l'ajout d'un wrapper pour StructuralComparisons.StructuralEqualityComparer comme suggéré par phoog
internal class GenericStructuralComparer<T> : IEqualityComparer<T>
{
static GenericStructuralComparer<T> _instance;
public static IEqualityComparer<T> Instance
{
get { return _instance ?? (_instance = new GenericStructuralComparer<T>()); }
}
public bool Equals(T x, T y)
{
return StructuralComparisons.StructuralEqualityComparer.Equals(x, y);
}
public int GetHashCode(T obj)
{
return StructuralComparisons.StructuralEqualityComparer.GetHashCode(obj);
}
}
public static IEqualityComparer<T> StructuralComparer<T>()
{
return GenericStructuralComparer<T>.Instance;
}
Et puis
var comparer = StructuralComparer<int[]>();
var s1 = new HashSet<int[]>(new[] { new[] { 1, 2 }, new[] { 3, 4 } }, comparer);
var s2 = new HashSet<int[]>(new[] { new[] { 1, 2 }, new[] { 3, 4 } }, comparer);
s1.SetEquals(s2); // True