public override int GetHashCode()
 {
     unchecked
     {
         int hashCode = PrintUnitsInHeader.GetHashCode();
         hashCode = (hashCode * 397) ^ PrintUnitsInContent.GetHashCode();
         hashCode = (hashCode * 397) ^ (SizeUnit != null ? SizeUnit.GetHashCode() : 0);
         hashCode = (hashCode * 397) ^ (TimeUnit != null ? TimeUnit.GetHashCode() : 0);
         return(hashCode);
     }
 }
 public override int GetHashCode()
 {
     unchecked
     {
         int hashCode = PrintUnitsInHeader.GetHashCode();
         hashCode = (hashCode * 397) ^ PrintUnitsInContent.GetHashCode();
         hashCode = (hashCode * 397) ^ PrintZeroValuesInContent.GetHashCode();
         hashCode = (hashCode * 397) ^ (SizeUnit != null ? SizeUnit.GetHashCode() : 0);
         hashCode = (hashCode * 397) ^ (TimeUnit != null ? TimeUnit.GetHashCode() : 0);
         hashCode = (hashCode * 397) ^ MaxParameterColumnWidth;
         return(hashCode);
     }
 }