public bool Equals(whatabouthisone other) { if (ReferenceEquals(null, other)) { return(false); } if (ReferenceEquals(this, other)) { return(true); } return(base.Equals(other) && Equals(other.Property1bis, Property1bis) && Equals(other.Property2bis, Property2bis)); }
public bool Equals(whatabouthisone other) { if (ReferenceEquals(null, other)) return false; if (ReferenceEquals(this, other)) return true; return base.Equals(other) && Equals(other.Property1bis, Property1bis) && Equals(other.Property2bis, Property2bis) ; }