Exemple #1
0
        public override bool Equals(object obj)
        {
            if (obj == this)
            {
                return(true);
            }
            var other = obj as RCS;

            if (other == null)
            {
                return(false);
            }
            if (!IC.Equals(other.IC))
            {
                return(false);
            }
            return(CS.Equals(other.CS));
        }
Exemple #2
0
 public bool ICMessagesAndEntitiesAreEqual(SDS other)
 {
     return(IC.Equals(other.IC) &&
            Helper.AreEqual(FinalEntities, other.FinalEntities)
            );
 }