public override int GetHashCode() { unchecked // Overflow is fine, just wrap { int hash = 17; hash = hash * 23 + Artists.GetHashCode(); hash = hash * 23 + Title.GetHashCode(); hash = hash * 23 + Version.GetHashCode(); return(hash); } }