/// <summary> /// Determines whether or not the specified resource record is equal to the current instance. /// </summary> /// <param name="rr">The resource record to compare with.</param> /// <returns></returns> public bool Equals(RR rr) { if (object.ReferenceEquals(null, rr)) return false; if (false == GetType().Equals(rr.GetType())) return false; if (false == Base.Equals(rr.Base)) return false; return this.EqualsRDATA(rr); }
/// <summary> /// Determines whether or not the specified resource record is equal to the current instance. /// </summary> /// <param name="rr">The resource record to compare with.</param> /// <returns></returns> public bool Equals(RR rr) { if (object.ReferenceEquals(null, rr)) { return(false); } if (false == GetType().Equals(rr.GetType())) { return(false); } if (false == Base.Equals(rr.Base)) { return(false); } return(this.EqualsRDATA(rr)); }