/// <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 (Runs != null) { hashCode = hashCode * 59 + Runs.GetHashCode(); } if (Self != null) { hashCode = hashCode * 59 + Self.GetHashCode(); } if (Queue != null) { hashCode = hashCode * 59 + Queue.GetHashCode(); } if (Actions != null) { hashCode = hashCode * 59 + Actions.GetHashCode(); } if (Class != null) { hashCode = hashCode * 59 + Class.GetHashCode(); } return(hashCode); } }