/// <summary> /// Returns a hash code for this instance. /// </summary> /// <returns> /// A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. /// </returns> public override int GetHashCode() { return(Min.GetHashCode() ^ Q1.GetHashCode() ^ Median.GetHashCode() ^ Mean.GetHashCode() ^ Q3.GetHashCode() ^ Max.GetHashCode() ^ StdDev.GetHashCode() ^ N.GetHashCode()); }
/// <summary> /// Gets the hash code /// </summary> /// <returns>Hash code</returns> public override int GetHashCode() { unchecked // Overflow is fine, just wrap { var hashCode = 41; // Suitable nullity checks etc, of course :) if (Name != null) { hashCode = hashCode * 59 + Name.GetHashCode(); } if (Per100g != null) { hashCode = hashCode * 59 + Per100g.GetHashCode(); } if (MeasurementUnit != null) { hashCode = hashCode * 59 + MeasurementUnit.GetHashCode(); } if (Min != null) { hashCode = hashCode * 59 + Min.GetHashCode(); } if (Max != null) { hashCode = hashCode * 59 + Max.GetHashCode(); } if (Median != null) { hashCode = hashCode * 59 + Median.GetHashCode(); } if (Rank != null) { hashCode = hashCode * 59 + Rank.GetHashCode(); } if (DataPoints != null) { hashCode = hashCode * 59 + DataPoints.GetHashCode(); } if (Footnote != null) { hashCode = hashCode * 59 + Footnote.GetHashCode(); } if (Description != null) { hashCode = hashCode * 59 + Description.GetHashCode(); } return(hashCode); } }