Example #1
0
 /// <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 (Total != null)
         {
             hashCode = hashCode * 59 + Total.GetHashCode();
         }
         if (Last24h != null)
         {
             hashCode = hashCode * 59 + Last24h.GetHashCode();
         }
         if (SaleVelocityPerSeconds != null)
         {
             hashCode = hashCode * 59 + SaleVelocityPerSeconds.GetHashCode();
         }
         return(hashCode);
     }
 }