int IEqualityComparer.GetHashCode(object obj) { return(RuntimeHelpers.GetHashCode(obj)); }
public override int GetHashCode() { return(RuntimeHelpers.GetHashCode(this)); }
public int GetHashCode(T obj) { return(RuntimeHelpers.GetHashCode(obj)); }
private static int ReferenceHashCode(object o) => Initial.GetHashCode(o);