public bool Equals(TransitionLossEquivalentKey other) { if (ReferenceEquals(null, other)) { return(false); } if (ReferenceEquals(this, other)) { return(true); } return(Equals(other.Key, Key) && Equals(other.Losses, Losses)); }
public bool Equals(TransitionLossEquivalentKey other) { if (ReferenceEquals(null, other)) return false; if (ReferenceEquals(this, other)) return true; return Equals(other.Key, Key) && Equals(other.Losses, Losses); }