コード例 #1
0
 public override int GetHashCode()
 {
     unchecked
     {
         var hashCode = (LogicalName != null ? LogicalName.GetHashCode() : 0);
         hashCode = (hashCode * 397) ^ (HostName != null ? HostName.GetHashCode() : 0);
         hashCode = (hashCode * 397) ^ HostGuid.GetHashCode();
         return(hashCode);
     }
 }
コード例 #2
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 (LogicalName != null)
         {
             hashCode = hashCode * 59 + LogicalName.GetHashCode();
         }
         if (MetadataId != null)
         {
             hashCode = hashCode * 59 + MetadataId.GetHashCode();
         }
         if (OptionSet != null)
         {
             hashCode = hashCode * 59 + OptionSet.GetHashCode();
         }
         return(hashCode);
     }
 }
コード例 #3
0
 public override int GetHashCode()
 {
     return(LogicalName == null?base.GetHashCode() : LogicalName.GetHashCode());
 }