Example #1
0
 public bool Equals(IsotopeEnrichments other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(base.Equals(other) &&
            ArrayUtil.EqualsDeep(other._isotopeEnrichments, _isotopeEnrichments));
 }
 public bool Equals(IsotopeEnrichments other)
 {
     if (ReferenceEquals(null, other)) return false;
     if (ReferenceEquals(this, other)) return true;
     return base.Equals(other) &&
         ArrayUtil.EqualsDeep(other._isotopeEnrichments, _isotopeEnrichments);
 }