/// <summary> /// Returns true if Order instances are equal /// </summary> /// <param name="other">Instance of Order to be compared</param> /// <returns>Boolean</returns> public bool Equals(Order other) { // credit: http://stackoverflow.com/a/10454552/677735 if (other == null) { return(false); } return((Side == other.Side || Side != null && Side.Equals(other.Side)) && (Sv == other.Sv || Sv != null && Sv.Equals(other.Sv)) && (Pt == other.Pt || Pt != null && Pt.Equals(other.Pt)) && (Ot == other.Ot || Ot != null && Ot.Equals(other.Ot)) && (P == other.P || P != null && P.Equals(other.P)) && (Sc == other.Sc || Sc != null && Sc.Equals(other.Sc)) && (Rc == other.Rc || Rc != null && Rc.Equals(other.Rc)) && (S == other.S || S != null && S.Equals(other.S)) && (Pd == other.Pd || Pd != null && Pd.Equals(other.Pd)) && (Rac == other.Rac || Rac != null && Rac.Equals(other.Rac)) && (Md == other.Md || Md != null && Md.Equals(other.Md)) && (Sl == other.Sl || Sl != null && Sl.Equals(other.Sl)) && (Avp == other.Avp || Avp != null && Avp.Equals(other.Avp)) && (Sm == other.Sm || Sm != null && Sm.Equals(other.Sm)) && (Id == other.Id || Id != null && Id.Equals(other.Id)) && (Bsp == other.Bsp || Bsp != null && Bsp.Equals(other.Bsp)) && (Status == other.Status || Status != null && Status.Equals(other.Status)) && (Sr == other.Sr || Sr != null && Sr.Equals(other.Sr)) && (Cd == other.Cd || Cd != null && Cd.Equals(other.Cd))); }