Example #1
0
 /// <summary>
 /// Gets the hash code
 /// </summary>
 /// <returns>Hash code</returns>
 public override int GetHashCode()
 {
     unchecked // Overflow is fine, just wrap
     {
         int hashCode = 41;
         if (Error != null)
         {
             hashCode = hashCode * 59 + Error.GetHashCode();
         }
         hashCode = hashCode * 59 + RemainingTokens.GetHashCode();
         if (ErrorInfo != null)
         {
             hashCode = hashCode * 59 + ErrorInfo.GetHashCode();
         }
         if (WarningsInfo != null)
         {
             hashCode = hashCode * 59 + WarningsInfo.GetHashCode();
         }
         hashCode = hashCode * 59 + ContentRemoved.GetHashCode();
         hashCode = hashCode * 59 + VersionChanged.GetHashCode();
         hashCode = hashCode * 59 + NewFileSize.GetHashCode();
         return(hashCode);
     }
 }