示例#1
0
 public bool Equals(Asp330CertLimit that)
 {
     if (that is null)
     {
         return(false);
     }
     if (ReferenceEquals(this, that))
     {
         return(true);
     }
     if (!UnitUnderTest.Equals(that.UnitUnderTest))
     {
         return(false);
     }
     if (!CertLimitDays.Equals(that.CertLimitDays))
     {
         return(false);
     }
     return(true);
 }